pb

package
v0.0.0-...-40fc3ee Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 19, 2019 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func RegisterMatchServiceServer

func RegisterMatchServiceServer(s *grpc.Server, srv MatchServiceServer)

Types

type DeleteMatchRequest

type DeleteMatchRequest struct {
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteMatchRequest) Descriptor

func (*DeleteMatchRequest) Descriptor() ([]byte, []int)

func (*DeleteMatchRequest) GetId

func (m *DeleteMatchRequest) GetId() string

func (*DeleteMatchRequest) ProtoMessage

func (*DeleteMatchRequest) ProtoMessage()

func (*DeleteMatchRequest) Reset

func (m *DeleteMatchRequest) Reset()

func (*DeleteMatchRequest) String

func (m *DeleteMatchRequest) String() string

func (*DeleteMatchRequest) XXX_DiscardUnknown

func (m *DeleteMatchRequest) XXX_DiscardUnknown()

func (*DeleteMatchRequest) XXX_Marshal

func (m *DeleteMatchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteMatchRequest) XXX_Merge

func (m *DeleteMatchRequest) XXX_Merge(src proto.Message)

func (*DeleteMatchRequest) XXX_Size

func (m *DeleteMatchRequest) XXX_Size() int

func (*DeleteMatchRequest) XXX_Unmarshal

func (m *DeleteMatchRequest) XXX_Unmarshal(b []byte) error

type DeleteMatchResponse

type DeleteMatchResponse struct {
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteMatchResponse) Descriptor

func (*DeleteMatchResponse) Descriptor() ([]byte, []int)

func (*DeleteMatchResponse) GetId

func (m *DeleteMatchResponse) GetId() string

func (*DeleteMatchResponse) ProtoMessage

func (*DeleteMatchResponse) ProtoMessage()

func (*DeleteMatchResponse) Reset

func (m *DeleteMatchResponse) Reset()

func (*DeleteMatchResponse) String

func (m *DeleteMatchResponse) String() string

func (*DeleteMatchResponse) XXX_DiscardUnknown

func (m *DeleteMatchResponse) XXX_DiscardUnknown()

func (*DeleteMatchResponse) XXX_Marshal

func (m *DeleteMatchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteMatchResponse) XXX_Merge

func (m *DeleteMatchResponse) XXX_Merge(src proto.Message)

func (*DeleteMatchResponse) XXX_Size

func (m *DeleteMatchResponse) XXX_Size() int

func (*DeleteMatchResponse) XXX_Unmarshal

func (m *DeleteMatchResponse) XXX_Unmarshal(b []byte) error

type GetMatchRequest

type GetMatchRequest struct {
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	UserID               uint64   `protobuf:"varint,2,opt,name=userID,proto3" json:"userID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetMatchRequest) Descriptor

func (*GetMatchRequest) Descriptor() ([]byte, []int)

func (*GetMatchRequest) GetId

func (m *GetMatchRequest) GetId() string

func (*GetMatchRequest) GetUserID

func (m *GetMatchRequest) GetUserID() uint64

func (*GetMatchRequest) ProtoMessage

func (*GetMatchRequest) ProtoMessage()

func (*GetMatchRequest) Reset

func (m *GetMatchRequest) Reset()

func (*GetMatchRequest) String

func (m *GetMatchRequest) String() string

func (*GetMatchRequest) XXX_DiscardUnknown

func (m *GetMatchRequest) XXX_DiscardUnknown()

func (*GetMatchRequest) XXX_Marshal

func (m *GetMatchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetMatchRequest) XXX_Merge

func (m *GetMatchRequest) XXX_Merge(src proto.Message)

func (*GetMatchRequest) XXX_Size

func (m *GetMatchRequest) XXX_Size() int

func (*GetMatchRequest) XXX_Unmarshal

func (m *GetMatchRequest) XXX_Unmarshal(b []byte) error

type GetMatchResponse

type GetMatchResponse struct {
	Match                *Match   `protobuf:"bytes,1,opt,name=match,proto3" json:"match,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetMatchResponse) Descriptor

func (*GetMatchResponse) Descriptor() ([]byte, []int)

func (*GetMatchResponse) GetMatch

func (m *GetMatchResponse) GetMatch() *Match

func (*GetMatchResponse) ProtoMessage

func (*GetMatchResponse) ProtoMessage()

func (*GetMatchResponse) Reset

func (m *GetMatchResponse) Reset()

func (*GetMatchResponse) String

func (m *GetMatchResponse) String() string

func (*GetMatchResponse) XXX_DiscardUnknown

func (m *GetMatchResponse) XXX_DiscardUnknown()

func (*GetMatchResponse) XXX_Marshal

func (m *GetMatchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetMatchResponse) XXX_Merge

func (m *GetMatchResponse) XXX_Merge(src proto.Message)

func (*GetMatchResponse) XXX_Size

func (m *GetMatchResponse) XXX_Size() int

func (*GetMatchResponse) XXX_Unmarshal

func (m *GetMatchResponse) XXX_Unmarshal(b []byte) error

type GetMultipleMatchesRequest

type GetMultipleMatchesRequest struct {
	Similarities         []string `protobuf:"bytes,1,rep,name=similarities,proto3" json:"similarities,omitempty"`
	Skip                 uint64   `protobuf:"varint,2,opt,name=skip,proto3" json:"skip,omitempty"`
	Take                 uint64   `protobuf:"varint,3,opt,name=take,proto3" json:"take,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetMultipleMatchesRequest) Descriptor

func (*GetMultipleMatchesRequest) Descriptor() ([]byte, []int)

func (*GetMultipleMatchesRequest) GetSimilarities

func (m *GetMultipleMatchesRequest) GetSimilarities() []string

func (*GetMultipleMatchesRequest) GetSkip

func (m *GetMultipleMatchesRequest) GetSkip() uint64

func (*GetMultipleMatchesRequest) GetTake

func (m *GetMultipleMatchesRequest) GetTake() uint64

func (*GetMultipleMatchesRequest) ProtoMessage

func (*GetMultipleMatchesRequest) ProtoMessage()

func (*GetMultipleMatchesRequest) Reset

func (m *GetMultipleMatchesRequest) Reset()

func (*GetMultipleMatchesRequest) String

func (m *GetMultipleMatchesRequest) String() string

func (*GetMultipleMatchesRequest) XXX_DiscardUnknown

func (m *GetMultipleMatchesRequest) XXX_DiscardUnknown()

func (*GetMultipleMatchesRequest) XXX_Marshal

func (m *GetMultipleMatchesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetMultipleMatchesRequest) XXX_Merge

func (m *GetMultipleMatchesRequest) XXX_Merge(src proto.Message)

func (*GetMultipleMatchesRequest) XXX_Size

func (m *GetMultipleMatchesRequest) XXX_Size() int

func (*GetMultipleMatchesRequest) XXX_Unmarshal

func (m *GetMultipleMatchesRequest) XXX_Unmarshal(b []byte) error

type GetMultipleMatchesResponse

type GetMultipleMatchesResponse struct {
	Matches              []*MatchedUser `protobuf:"bytes,1,rep,name=matches,proto3" json:"matches,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*GetMultipleMatchesResponse) Descriptor

func (*GetMultipleMatchesResponse) Descriptor() ([]byte, []int)

func (*GetMultipleMatchesResponse) GetMatches

func (m *GetMultipleMatchesResponse) GetMatches() []*MatchedUser

func (*GetMultipleMatchesResponse) ProtoMessage

func (*GetMultipleMatchesResponse) ProtoMessage()

func (*GetMultipleMatchesResponse) Reset

func (m *GetMultipleMatchesResponse) Reset()

func (*GetMultipleMatchesResponse) String

func (m *GetMultipleMatchesResponse) String() string

func (*GetMultipleMatchesResponse) XXX_DiscardUnknown

func (m *GetMultipleMatchesResponse) XXX_DiscardUnknown()

func (*GetMultipleMatchesResponse) XXX_Marshal

func (m *GetMultipleMatchesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetMultipleMatchesResponse) XXX_Merge

func (m *GetMultipleMatchesResponse) XXX_Merge(src proto.Message)

func (*GetMultipleMatchesResponse) XXX_Size

func (m *GetMultipleMatchesResponse) XXX_Size() int

func (*GetMultipleMatchesResponse) XXX_Unmarshal

func (m *GetMultipleMatchesResponse) XXX_Unmarshal(b []byte) error

type Match

type Match struct {
	Id                   string               `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	PersonID             string               `protobuf:"bytes,2,opt,name=personID,proto3" json:"personID,omitempty"`
	Managers             []string             `protobuf:"bytes,3,rep,name=managers,proto3" json:"managers,omitempty"`
	Details              string               `protobuf:"bytes,4,opt,name=details,proto3" json:"details,omitempty"`
	Type                 string               `protobuf:"bytes,5,opt,name=type,proto3" json:"type,omitempty"`
	Description          string               `protobuf:"bytes,6,opt,name=description,proto3" json:"description,omitempty"`
	Similarities         []string             `protobuf:"bytes,7,rep,name=similarities,proto3" json:"similarities,omitempty"`
	Time                 *timestamp.Timestamp `protobuf:"bytes,8,opt,name=time,proto3" json:"time,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*Match) Descriptor

func (*Match) Descriptor() ([]byte, []int)

func (*Match) GetDescription

func (m *Match) GetDescription() string

func (*Match) GetDetails

func (m *Match) GetDetails() string

func (*Match) GetId

func (m *Match) GetId() string

func (*Match) GetManagers

func (m *Match) GetManagers() []string

func (*Match) GetPersonID

func (m *Match) GetPersonID() string

func (*Match) GetSimilarities

func (m *Match) GetSimilarities() []string

func (*Match) GetTime

func (m *Match) GetTime() *timestamp.Timestamp

func (*Match) GetType

func (m *Match) GetType() string

func (*Match) ProtoMessage

func (*Match) ProtoMessage()

func (*Match) Reset

func (m *Match) Reset()

func (*Match) String

func (m *Match) String() string

func (*Match) XXX_DiscardUnknown

func (m *Match) XXX_DiscardUnknown()

func (*Match) XXX_Marshal

func (m *Match) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Match) XXX_Merge

func (m *Match) XXX_Merge(src proto.Message)

func (*Match) XXX_Size

func (m *Match) XXX_Size() int

func (*Match) XXX_Unmarshal

func (m *Match) XXX_Unmarshal(b []byte) error

type MatchServiceClient

type MatchServiceClient interface {
	PostMatch(ctx context.Context, in *PostMatchRequest, opts ...grpc.CallOption) (*PostMatchResponse, error)
	GetMatch(ctx context.Context, in *GetMatchRequest, opts ...grpc.CallOption) (*GetMatchResponse, error)
	GetMultipleMatches(ctx context.Context, in *GetMultipleMatchesRequest, opts ...grpc.CallOption) (*GetMultipleMatchesResponse, error)
	PutMatch(ctx context.Context, in *PutMatchRequest, opts ...grpc.CallOption) (*PutMatchResponse, error)
	DeleteMatch(ctx context.Context, in *DeleteMatchRequest, opts ...grpc.CallOption) (*DeleteMatchResponse, error)
}

MatchServiceClient is the client API for MatchService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewMatchServiceClient

func NewMatchServiceClient(cc *grpc.ClientConn) MatchServiceClient

type MatchServiceServer

MatchServiceServer is the server API for MatchService service.

type MatchedUser

type MatchedUser struct {
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Username             string   `protobuf:"bytes,3,opt,name=username,proto3" json:"username,omitempty"`
	Firstname            string   `protobuf:"bytes,4,opt,name=firstname,proto3" json:"firstname,omitempty"`
	Lastname             string   `protobuf:"bytes,5,opt,name=lastname,proto3" json:"lastname,omitempty"`
	Status               string   `protobuf:"bytes,6,opt,name=status,proto3" json:"status,omitempty"`
	Type                 string   `protobuf:"bytes,7,opt,name=type,proto3" json:"type,omitempty"`
	EmailAddress         string   `protobuf:"bytes,8,opt,name=emailAddress,proto3" json:"emailAddress,omitempty"`
	Gender               string   `protobuf:"bytes,9,opt,name=gender,proto3" json:"gender,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*MatchedUser) Descriptor

func (*MatchedUser) Descriptor() ([]byte, []int)

func (*MatchedUser) GetEmailAddress

func (m *MatchedUser) GetEmailAddress() string

func (*MatchedUser) GetFirstname

func (m *MatchedUser) GetFirstname() string

func (*MatchedUser) GetGender

func (m *MatchedUser) GetGender() string

func (*MatchedUser) GetId

func (m *MatchedUser) GetId() string

func (*MatchedUser) GetLastname

func (m *MatchedUser) GetLastname() string

func (*MatchedUser) GetName

func (m *MatchedUser) GetName() string

func (*MatchedUser) GetStatus

func (m *MatchedUser) GetStatus() string

func (*MatchedUser) GetType

func (m *MatchedUser) GetType() string

func (*MatchedUser) GetUsername

func (m *MatchedUser) GetUsername() string

func (*MatchedUser) ProtoMessage

func (*MatchedUser) ProtoMessage()

func (*MatchedUser) Reset

func (m *MatchedUser) Reset()

func (*MatchedUser) String

func (m *MatchedUser) String() string

func (*MatchedUser) XXX_DiscardUnknown

func (m *MatchedUser) XXX_DiscardUnknown()

func (*MatchedUser) XXX_Marshal

func (m *MatchedUser) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MatchedUser) XXX_Merge

func (m *MatchedUser) XXX_Merge(src proto.Message)

func (*MatchedUser) XXX_Size

func (m *MatchedUser) XXX_Size() int

func (*MatchedUser) XXX_Unmarshal

func (m *MatchedUser) XXX_Unmarshal(b []byte) error

type PostMatchRequest

type PostMatchRequest struct {
	PersonID             string               `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID,omitempty"`
	Managers             []string             `protobuf:"bytes,2,rep,name=managers,proto3" json:"managers,omitempty"`
	Details              string               `protobuf:"bytes,3,opt,name=details,proto3" json:"details,omitempty"`
	Type                 string               `protobuf:"bytes,4,opt,name=type,proto3" json:"type,omitempty"`
	Description          string               `protobuf:"bytes,5,opt,name=description,proto3" json:"description,omitempty"`
	Similarities         []string             `protobuf:"bytes,6,rep,name=similarities,proto3" json:"similarities,omitempty"`
	Time                 *timestamp.Timestamp `protobuf:"bytes,7,opt,name=time,proto3" json:"time,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*PostMatchRequest) Descriptor

func (*PostMatchRequest) Descriptor() ([]byte, []int)

func (*PostMatchRequest) GetDescription

func (m *PostMatchRequest) GetDescription() string

func (*PostMatchRequest) GetDetails

func (m *PostMatchRequest) GetDetails() string

func (*PostMatchRequest) GetManagers

func (m *PostMatchRequest) GetManagers() []string

func (*PostMatchRequest) GetPersonID

func (m *PostMatchRequest) GetPersonID() string

func (*PostMatchRequest) GetSimilarities

func (m *PostMatchRequest) GetSimilarities() []string

func (*PostMatchRequest) GetTime

func (m *PostMatchRequest) GetTime() *timestamp.Timestamp

func (*PostMatchRequest) GetType

func (m *PostMatchRequest) GetType() string

func (*PostMatchRequest) ProtoMessage

func (*PostMatchRequest) ProtoMessage()

func (*PostMatchRequest) Reset

func (m *PostMatchRequest) Reset()

func (*PostMatchRequest) String

func (m *PostMatchRequest) String() string

func (*PostMatchRequest) XXX_DiscardUnknown

func (m *PostMatchRequest) XXX_DiscardUnknown()

func (*PostMatchRequest) XXX_Marshal

func (m *PostMatchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PostMatchRequest) XXX_Merge

func (m *PostMatchRequest) XXX_Merge(src proto.Message)

func (*PostMatchRequest) XXX_Size

func (m *PostMatchRequest) XXX_Size() int

func (*PostMatchRequest) XXX_Unmarshal

func (m *PostMatchRequest) XXX_Unmarshal(b []byte) error

type PostMatchResponse

type PostMatchResponse struct {
	Match                string   `protobuf:"bytes,1,opt,name=match,proto3" json:"match,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PostMatchResponse) Descriptor

func (*PostMatchResponse) Descriptor() ([]byte, []int)

func (*PostMatchResponse) GetMatch

func (m *PostMatchResponse) GetMatch() string

func (*PostMatchResponse) ProtoMessage

func (*PostMatchResponse) ProtoMessage()

func (*PostMatchResponse) Reset

func (m *PostMatchResponse) Reset()

func (*PostMatchResponse) String

func (m *PostMatchResponse) String() string

func (*PostMatchResponse) XXX_DiscardUnknown

func (m *PostMatchResponse) XXX_DiscardUnknown()

func (*PostMatchResponse) XXX_Marshal

func (m *PostMatchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PostMatchResponse) XXX_Merge

func (m *PostMatchResponse) XXX_Merge(src proto.Message)

func (*PostMatchResponse) XXX_Size

func (m *PostMatchResponse) XXX_Size() int

func (*PostMatchResponse) XXX_Unmarshal

func (m *PostMatchResponse) XXX_Unmarshal(b []byte) error

type PutMatchRequest

type PutMatchRequest struct {
	Id                   string               `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	PersonID             string               `protobuf:"bytes,2,opt,name=personID,proto3" json:"personID,omitempty"`
	Managers             []string             `protobuf:"bytes,3,rep,name=managers,proto3" json:"managers,omitempty"`
	Details              string               `protobuf:"bytes,4,opt,name=details,proto3" json:"details,omitempty"`
	Type                 string               `protobuf:"bytes,5,opt,name=type,proto3" json:"type,omitempty"`
	Description          string               `protobuf:"bytes,6,opt,name=description,proto3" json:"description,omitempty"`
	Similarities         []string             `protobuf:"bytes,7,rep,name=similarities,proto3" json:"similarities,omitempty"`
	Time                 *timestamp.Timestamp `protobuf:"bytes,8,opt,name=time,proto3" json:"time,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*PutMatchRequest) Descriptor

func (*PutMatchRequest) Descriptor() ([]byte, []int)

func (*PutMatchRequest) GetDescription

func (m *PutMatchRequest) GetDescription() string

func (*PutMatchRequest) GetDetails

func (m *PutMatchRequest) GetDetails() string

func (*PutMatchRequest) GetId

func (m *PutMatchRequest) GetId() string

func (*PutMatchRequest) GetManagers

func (m *PutMatchRequest) GetManagers() []string

func (*PutMatchRequest) GetPersonID

func (m *PutMatchRequest) GetPersonID() string

func (*PutMatchRequest) GetSimilarities

func (m *PutMatchRequest) GetSimilarities() []string

func (*PutMatchRequest) GetTime

func (m *PutMatchRequest) GetTime() *timestamp.Timestamp

func (*PutMatchRequest) GetType

func (m *PutMatchRequest) GetType() string

func (*PutMatchRequest) ProtoMessage

func (*PutMatchRequest) ProtoMessage()

func (*PutMatchRequest) Reset

func (m *PutMatchRequest) Reset()

func (*PutMatchRequest) String

func (m *PutMatchRequest) String() string

func (*PutMatchRequest) XXX_DiscardUnknown

func (m *PutMatchRequest) XXX_DiscardUnknown()

func (*PutMatchRequest) XXX_Marshal

func (m *PutMatchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PutMatchRequest) XXX_Merge

func (m *PutMatchRequest) XXX_Merge(src proto.Message)

func (*PutMatchRequest) XXX_Size

func (m *PutMatchRequest) XXX_Size() int

func (*PutMatchRequest) XXX_Unmarshal

func (m *PutMatchRequest) XXX_Unmarshal(b []byte) error

type PutMatchResponse

type PutMatchResponse struct {
	Match                string   `protobuf:"bytes,1,opt,name=match,proto3" json:"match,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PutMatchResponse) Descriptor

func (*PutMatchResponse) Descriptor() ([]byte, []int)

func (*PutMatchResponse) GetMatch

func (m *PutMatchResponse) GetMatch() string

func (*PutMatchResponse) ProtoMessage

func (*PutMatchResponse) ProtoMessage()

func (*PutMatchResponse) Reset

func (m *PutMatchResponse) Reset()

func (*PutMatchResponse) String

func (m *PutMatchResponse) String() string

func (*PutMatchResponse) XXX_DiscardUnknown

func (m *PutMatchResponse) XXX_DiscardUnknown()

func (*PutMatchResponse) XXX_Marshal

func (m *PutMatchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PutMatchResponse) XXX_Merge

func (m *PutMatchResponse) XXX_Merge(src proto.Message)

func (*PutMatchResponse) XXX_Size

func (m *PutMatchResponse) XXX_Size() int

func (*PutMatchResponse) XXX_Unmarshal

func (m *PutMatchResponse) XXX_Unmarshal(b []byte) error

type UnimplementedMatchServiceServer

type UnimplementedMatchServiceServer struct {
}

UnimplementedMatchServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedMatchServiceServer) DeleteMatch

func (*UnimplementedMatchServiceServer) GetMatch

func (*UnimplementedMatchServiceServer) GetMultipleMatches

func (*UnimplementedMatchServiceServer) PostMatch

func (*UnimplementedMatchServiceServer) PutMatch

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL