mylostidv1

package module
v1.0.3 Latest Latest
Warning

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

Go to latest
Published: Aug 22, 2023 License: Apache-2.0 Imports: 24 Imported by: 0

README

service-lostmyid-api

A repository for the lost my id service api being developed to host lost and found cards.

How do I update the definitions?
  • The api definition is defined in the proto file lostmyid.proto

  • To update the proto service you need to run pre-commit command

    pre-commit run --all-files

    with that in place update the api appropriately updates

Documentation

Overview

Package mylostidv1 is a generated GoMock package.

Index

Constants

This section is empty.

Variables

View Source
var (
	ITEMType_name = map[int32]string{
		0: "COLLECTIBLE",
		1: "SEARCH",
		2: "TRANSACTION",
	}
	ITEMType_value = map[string]int32{
		"COLLECTIBLE": 0,
		"SEARCH":      1,
		"TRANSACTION": 2,
	}
)

Enum value maps for ITEMType.

View Source
var File_mylostid_proto protoreflect.FileDescriptor
View Source
var LostMyIdService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "apis.LostMyIdService",
	HandlerType: (*LostMyIdServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "Collectible",
			Handler:    _LostMyIdService_Collectible_Handler,
		},
		{
			MethodName: "Search",
			Handler:    _LostMyIdService_Search_Handler,
		},
		{
			MethodName: "Progress",
			Handler:    _LostMyIdService_Progress_Handler,
		},
	},
	Streams: []grpc.StreamDesc{
		{
			StreamName:    "CollectibleList",
			Handler:       _LostMyIdService_CollectibleList_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "SearchList",
			Handler:       _LostMyIdService_SearchList_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "TransactionList",
			Handler:       _LostMyIdService_TransactionList_Handler,
			ServerStreams: true,
		},
	},
	Metadata: "mylostid.proto",
}

LostMyIdService_ServiceDesc is the grpc.ServiceDesc for LostMyIdService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

Functions

func RegisterLostMyIdServiceServer

func RegisterLostMyIdServiceServer(s grpc.ServiceRegistrar, srv LostMyIdServiceServer)

Types

type CollectibleRequest

type CollectibleRequest struct {
	FileId     []string          `protobuf:"bytes,1,rep,name=file_id,json=fileId,proto3" json:"file_id,omitempty"`
	Properties map[string]string `` /* 161-byte string literal not displayed */
	// contains filtered or unexported fields
}

Request to log a Collectible card

func (*CollectibleRequest) Descriptor deprecated

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

Deprecated: Use CollectibleRequest.ProtoReflect.Descriptor instead.

func (*CollectibleRequest) GetFileId

func (x *CollectibleRequest) GetFileId() []string

func (*CollectibleRequest) GetProperties

func (x *CollectibleRequest) GetProperties() map[string]string

func (*CollectibleRequest) ProtoMessage

func (*CollectibleRequest) ProtoMessage()

func (*CollectibleRequest) ProtoReflect

func (x *CollectibleRequest) ProtoReflect() protoreflect.Message

func (*CollectibleRequest) Reset

func (x *CollectibleRequest) Reset()

func (*CollectibleRequest) String

func (x *CollectibleRequest) String() string

func (*CollectibleRequest) Validate

func (m *CollectibleRequest) Validate() error

Validate checks the field values on CollectibleRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type CollectibleRequestValidationError

type CollectibleRequestValidationError struct {
	// contains filtered or unexported fields
}

CollectibleRequestValidationError is the validation error returned by CollectibleRequest.Validate if the designated constraints aren't met.

func (CollectibleRequestValidationError) Cause

Cause function returns cause value.

func (CollectibleRequestValidationError) Error

Error satisfies the builtin error interface

func (CollectibleRequestValidationError) ErrorName

ErrorName returns error name.

func (CollectibleRequestValidationError) Field

Field function returns field value.

func (CollectibleRequestValidationError) Key

Key function returns key value.

func (CollectibleRequestValidationError) Reason

Reason function returns reason value.

type CollectibleResponse

type CollectibleResponse struct {
	Id         string            `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	FileId     []string          `protobuf:"bytes,2,rep,name=file_id,json=fileId,proto3" json:"file_id,omitempty"`
	Properties map[string]string `` /* 161-byte string literal not displayed */
	State      string            `protobuf:"bytes,4,opt,name=state,proto3" json:"state,omitempty"`
	// contains filtered or unexported fields
}

func (*CollectibleResponse) Descriptor deprecated

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

Deprecated: Use CollectibleResponse.ProtoReflect.Descriptor instead.

func (*CollectibleResponse) GetFileId

func (x *CollectibleResponse) GetFileId() []string

func (*CollectibleResponse) GetId

func (x *CollectibleResponse) GetId() string

func (*CollectibleResponse) GetProperties

func (x *CollectibleResponse) GetProperties() map[string]string

func (*CollectibleResponse) GetState

func (x *CollectibleResponse) GetState() string

func (*CollectibleResponse) ProtoMessage

func (*CollectibleResponse) ProtoMessage()

func (*CollectibleResponse) ProtoReflect

func (x *CollectibleResponse) ProtoReflect() protoreflect.Message

func (*CollectibleResponse) Reset

func (x *CollectibleResponse) Reset()

func (*CollectibleResponse) String

func (x *CollectibleResponse) String() string

func (*CollectibleResponse) Validate

func (m *CollectibleResponse) Validate() error

Validate checks the field values on CollectibleResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type CollectibleResponseValidationError

type CollectibleResponseValidationError struct {
	// contains filtered or unexported fields
}

CollectibleResponseValidationError is the validation error returned by CollectibleResponse.Validate if the designated constraints aren't met.

func (CollectibleResponseValidationError) Cause

Cause function returns cause value.

func (CollectibleResponseValidationError) Error

Error satisfies the builtin error interface

func (CollectibleResponseValidationError) ErrorName

ErrorName returns error name.

func (CollectibleResponseValidationError) Field

Field function returns field value.

func (CollectibleResponseValidationError) Key

Key function returns key value.

func (CollectibleResponseValidationError) Reason

Reason function returns reason value.

type ITEMType

type ITEMType int32
const (
	ITEMType_COLLECTIBLE ITEMType = 0
	ITEMType_SEARCH      ITEMType = 1
	ITEMType_TRANSACTION ITEMType = 2
)

func (ITEMType) Descriptor

func (ITEMType) Descriptor() protoreflect.EnumDescriptor

func (ITEMType) Enum

func (x ITEMType) Enum() *ITEMType

func (ITEMType) EnumDescriptor deprecated

func (ITEMType) EnumDescriptor() ([]byte, []int)

Deprecated: Use ITEMType.Descriptor instead.

func (ITEMType) Number

func (x ITEMType) Number() protoreflect.EnumNumber

func (ITEMType) String

func (x ITEMType) String() string

func (ITEMType) Type

type LostMyIdServiceClient

type LostMyIdServiceClient interface {
	// Log a new Collectible request
	Collectible(ctx context.Context, in *CollectibleRequest, opts ...grpc.CallOption) (*CollectibleResponse, error)
	CollectibleList(ctx context.Context, in *RangeSpanRequest, opts ...grpc.CallOption) (LostMyIdService_CollectibleListClient, error)
	// Log a new search request
	Search(ctx context.Context, in *SearchRequest, opts ...grpc.CallOption) (*SearchResponse, error)
	SearchList(ctx context.Context, in *RangeSpanRequest, opts ...grpc.CallOption) (LostMyIdService_SearchListClient, error)
	Progress(ctx context.Context, in *ProgressRequest, opts ...grpc.CallOption) (*ProgressResponse, error)
	TransactionList(ctx context.Context, in *RangeSpanRequest, opts ...grpc.CallOption) (LostMyIdService_TransactionListClient, error)
}

LostMyIdServiceClient is the client API for LostMyIdService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type LostMyIdServiceServer

type LostMyIdServiceServer interface {
	// Log a new Collectible request
	Collectible(context.Context, *CollectibleRequest) (*CollectibleResponse, error)
	CollectibleList(*RangeSpanRequest, LostMyIdService_CollectibleListServer) error
	// Log a new search request
	Search(context.Context, *SearchRequest) (*SearchResponse, error)
	SearchList(*RangeSpanRequest, LostMyIdService_SearchListServer) error
	Progress(context.Context, *ProgressRequest) (*ProgressResponse, error)
	TransactionList(*RangeSpanRequest, LostMyIdService_TransactionListServer) error
	// contains filtered or unexported methods
}

LostMyIdServiceServer is the server API for LostMyIdService service. All implementations must embed UnimplementedLostMyIdServiceServer for forward compatibility

type LostMyIdService_CollectibleListClient

type LostMyIdService_CollectibleListClient interface {
	Recv() (*CollectibleResponse, error)
	grpc.ClientStream
}

type LostMyIdService_CollectibleListServer

type LostMyIdService_CollectibleListServer interface {
	Send(*CollectibleResponse) error
	grpc.ServerStream
}

type LostMyIdService_SearchListClient

type LostMyIdService_SearchListClient interface {
	Recv() (*SearchResponse, error)
	grpc.ClientStream
}

type LostMyIdService_SearchListServer

type LostMyIdService_SearchListServer interface {
	Send(*SearchResponse) error
	grpc.ServerStream
}

type LostMyIdService_TransactionListClient

type LostMyIdService_TransactionListClient interface {
	Recv() (*TransactionItem, error)
	grpc.ClientStream
}

type LostMyIdService_TransactionListServer

type LostMyIdService_TransactionListServer interface {
	Send(*TransactionItem) error
	grpc.ServerStream
}

type MockLostMyIdServiceClient

type MockLostMyIdServiceClient struct {
	// contains filtered or unexported fields
}

MockLostMyIdServiceClient is a mock of LostMyIdServiceClient interface.

func NewMockLostMyIdServiceClient

func NewMockLostMyIdServiceClient(ctrl *gomock.Controller) *MockLostMyIdServiceClient

NewMockLostMyIdServiceClient creates a new mock instance.

func (*MockLostMyIdServiceClient) Collectible

Collectible mocks base method.

func (*MockLostMyIdServiceClient) CollectibleList

CollectibleList mocks base method.

func (*MockLostMyIdServiceClient) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockLostMyIdServiceClient) Progress

Progress mocks base method.

func (*MockLostMyIdServiceClient) Search

Search mocks base method.

func (*MockLostMyIdServiceClient) SearchList

SearchList mocks base method.

func (*MockLostMyIdServiceClient) TransactionList

TransactionList mocks base method.

type MockLostMyIdServiceClientMockRecorder

type MockLostMyIdServiceClientMockRecorder struct {
	// contains filtered or unexported fields
}

MockLostMyIdServiceClientMockRecorder is the mock recorder for MockLostMyIdServiceClient.

func (*MockLostMyIdServiceClientMockRecorder) Collectible

func (mr *MockLostMyIdServiceClientMockRecorder) Collectible(ctx, in interface{}, opts ...interface{}) *gomock.Call

Collectible indicates an expected call of Collectible.

func (*MockLostMyIdServiceClientMockRecorder) CollectibleList

func (mr *MockLostMyIdServiceClientMockRecorder) CollectibleList(ctx, in interface{}, opts ...interface{}) *gomock.Call

CollectibleList indicates an expected call of CollectibleList.

func (*MockLostMyIdServiceClientMockRecorder) Progress

func (mr *MockLostMyIdServiceClientMockRecorder) Progress(ctx, in interface{}, opts ...interface{}) *gomock.Call

Progress indicates an expected call of Progress.

func (*MockLostMyIdServiceClientMockRecorder) Search

func (mr *MockLostMyIdServiceClientMockRecorder) Search(ctx, in interface{}, opts ...interface{}) *gomock.Call

Search indicates an expected call of Search.

func (*MockLostMyIdServiceClientMockRecorder) SearchList

func (mr *MockLostMyIdServiceClientMockRecorder) SearchList(ctx, in interface{}, opts ...interface{}) *gomock.Call

SearchList indicates an expected call of SearchList.

func (*MockLostMyIdServiceClientMockRecorder) TransactionList

func (mr *MockLostMyIdServiceClientMockRecorder) TransactionList(ctx, in interface{}, opts ...interface{}) *gomock.Call

TransactionList indicates an expected call of TransactionList.

type MockLostMyIdServiceServer

type MockLostMyIdServiceServer struct {
	// contains filtered or unexported fields
}

MockLostMyIdServiceServer is a mock of LostMyIdServiceServer interface.

func NewMockLostMyIdServiceServer

func NewMockLostMyIdServiceServer(ctrl *gomock.Controller) *MockLostMyIdServiceServer

NewMockLostMyIdServiceServer creates a new mock instance.

func (*MockLostMyIdServiceServer) Collectible

Collectible mocks base method.

func (*MockLostMyIdServiceServer) CollectibleList

CollectibleList mocks base method.

func (*MockLostMyIdServiceServer) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockLostMyIdServiceServer) Progress

Progress mocks base method.

func (*MockLostMyIdServiceServer) Search

Search mocks base method.

func (*MockLostMyIdServiceServer) SearchList

SearchList mocks base method.

func (*MockLostMyIdServiceServer) TransactionList

TransactionList mocks base method.

type MockLostMyIdServiceServerMockRecorder

type MockLostMyIdServiceServerMockRecorder struct {
	// contains filtered or unexported fields
}

MockLostMyIdServiceServerMockRecorder is the mock recorder for MockLostMyIdServiceServer.

func (*MockLostMyIdServiceServerMockRecorder) Collectible

func (mr *MockLostMyIdServiceServerMockRecorder) Collectible(arg0, arg1 interface{}) *gomock.Call

Collectible indicates an expected call of Collectible.

func (*MockLostMyIdServiceServerMockRecorder) CollectibleList

func (mr *MockLostMyIdServiceServerMockRecorder) CollectibleList(arg0, arg1 interface{}) *gomock.Call

CollectibleList indicates an expected call of CollectibleList.

func (*MockLostMyIdServiceServerMockRecorder) Progress

func (mr *MockLostMyIdServiceServerMockRecorder) Progress(arg0, arg1 interface{}) *gomock.Call

Progress indicates an expected call of Progress.

func (*MockLostMyIdServiceServerMockRecorder) Search

func (mr *MockLostMyIdServiceServerMockRecorder) Search(arg0, arg1 interface{}) *gomock.Call

Search indicates an expected call of Search.

func (*MockLostMyIdServiceServerMockRecorder) SearchList

func (mr *MockLostMyIdServiceServerMockRecorder) SearchList(arg0, arg1 interface{}) *gomock.Call

SearchList indicates an expected call of SearchList.

func (*MockLostMyIdServiceServerMockRecorder) TransactionList

func (mr *MockLostMyIdServiceServerMockRecorder) TransactionList(arg0, arg1 interface{}) *gomock.Call

TransactionList indicates an expected call of TransactionList.

type MockLostMyIdService_CollectibleListClient

type MockLostMyIdService_CollectibleListClient struct {
	// contains filtered or unexported fields
}

MockLostMyIdService_CollectibleListClient is a mock of LostMyIdService_CollectibleListClient interface.

func NewMockLostMyIdService_CollectibleListClient

func NewMockLostMyIdService_CollectibleListClient(ctrl *gomock.Controller) *MockLostMyIdService_CollectibleListClient

NewMockLostMyIdService_CollectibleListClient creates a new mock instance.

func (*MockLostMyIdService_CollectibleListClient) CloseSend

CloseSend mocks base method.

func (*MockLostMyIdService_CollectibleListClient) Context

Context mocks base method.

func (*MockLostMyIdService_CollectibleListClient) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockLostMyIdService_CollectibleListClient) Header

Header mocks base method.

func (*MockLostMyIdService_CollectibleListClient) Recv

Recv mocks base method.

func (*MockLostMyIdService_CollectibleListClient) RecvMsg

func (m_2 *MockLostMyIdService_CollectibleListClient) RecvMsg(m interface{}) error

RecvMsg mocks base method.

func (*MockLostMyIdService_CollectibleListClient) SendMsg

func (m_2 *MockLostMyIdService_CollectibleListClient) SendMsg(m interface{}) error

SendMsg mocks base method.

func (*MockLostMyIdService_CollectibleListClient) Trailer

Trailer mocks base method.

type MockLostMyIdService_CollectibleListClientMockRecorder

type MockLostMyIdService_CollectibleListClientMockRecorder struct {
	// contains filtered or unexported fields
}

MockLostMyIdService_CollectibleListClientMockRecorder is the mock recorder for MockLostMyIdService_CollectibleListClient.

func (*MockLostMyIdService_CollectibleListClientMockRecorder) CloseSend

CloseSend indicates an expected call of CloseSend.

func (*MockLostMyIdService_CollectibleListClientMockRecorder) Context

Context indicates an expected call of Context.

func (*MockLostMyIdService_CollectibleListClientMockRecorder) Header

Header indicates an expected call of Header.

func (*MockLostMyIdService_CollectibleListClientMockRecorder) Recv

Recv indicates an expected call of Recv.

func (*MockLostMyIdService_CollectibleListClientMockRecorder) RecvMsg

RecvMsg indicates an expected call of RecvMsg.

func (*MockLostMyIdService_CollectibleListClientMockRecorder) SendMsg

SendMsg indicates an expected call of SendMsg.

func (*MockLostMyIdService_CollectibleListClientMockRecorder) Trailer

Trailer indicates an expected call of Trailer.

type MockLostMyIdService_CollectibleListServer

type MockLostMyIdService_CollectibleListServer struct {
	// contains filtered or unexported fields
}

MockLostMyIdService_CollectibleListServer is a mock of LostMyIdService_CollectibleListServer interface.

func NewMockLostMyIdService_CollectibleListServer

func NewMockLostMyIdService_CollectibleListServer(ctrl *gomock.Controller) *MockLostMyIdService_CollectibleListServer

NewMockLostMyIdService_CollectibleListServer creates a new mock instance.

func (*MockLostMyIdService_CollectibleListServer) Context

Context mocks base method.

func (*MockLostMyIdService_CollectibleListServer) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockLostMyIdService_CollectibleListServer) RecvMsg

func (m_2 *MockLostMyIdService_CollectibleListServer) RecvMsg(m interface{}) error

RecvMsg mocks base method.

func (*MockLostMyIdService_CollectibleListServer) Send

Send mocks base method.

func (*MockLostMyIdService_CollectibleListServer) SendHeader

SendHeader mocks base method.

func (*MockLostMyIdService_CollectibleListServer) SendMsg

func (m_2 *MockLostMyIdService_CollectibleListServer) SendMsg(m interface{}) error

SendMsg mocks base method.

func (*MockLostMyIdService_CollectibleListServer) SetHeader

SetHeader mocks base method.

func (*MockLostMyIdService_CollectibleListServer) SetTrailer

SetTrailer mocks base method.

type MockLostMyIdService_CollectibleListServerMockRecorder

type MockLostMyIdService_CollectibleListServerMockRecorder struct {
	// contains filtered or unexported fields
}

MockLostMyIdService_CollectibleListServerMockRecorder is the mock recorder for MockLostMyIdService_CollectibleListServer.

func (*MockLostMyIdService_CollectibleListServerMockRecorder) Context

Context indicates an expected call of Context.

func (*MockLostMyIdService_CollectibleListServerMockRecorder) RecvMsg

RecvMsg indicates an expected call of RecvMsg.

func (*MockLostMyIdService_CollectibleListServerMockRecorder) Send

Send indicates an expected call of Send.

func (*MockLostMyIdService_CollectibleListServerMockRecorder) SendHeader

func (mr *MockLostMyIdService_CollectibleListServerMockRecorder) SendHeader(arg0 interface{}) *gomock.Call

SendHeader indicates an expected call of SendHeader.

func (*MockLostMyIdService_CollectibleListServerMockRecorder) SendMsg

SendMsg indicates an expected call of SendMsg.

func (*MockLostMyIdService_CollectibleListServerMockRecorder) SetHeader

func (mr *MockLostMyIdService_CollectibleListServerMockRecorder) SetHeader(arg0 interface{}) *gomock.Call

SetHeader indicates an expected call of SetHeader.

func (*MockLostMyIdService_CollectibleListServerMockRecorder) SetTrailer

func (mr *MockLostMyIdService_CollectibleListServerMockRecorder) SetTrailer(arg0 interface{}) *gomock.Call

SetTrailer indicates an expected call of SetTrailer.

type MockLostMyIdService_SearchListClient

type MockLostMyIdService_SearchListClient struct {
	// contains filtered or unexported fields
}

MockLostMyIdService_SearchListClient is a mock of LostMyIdService_SearchListClient interface.

func NewMockLostMyIdService_SearchListClient

func NewMockLostMyIdService_SearchListClient(ctrl *gomock.Controller) *MockLostMyIdService_SearchListClient

NewMockLostMyIdService_SearchListClient creates a new mock instance.

func (*MockLostMyIdService_SearchListClient) CloseSend

CloseSend mocks base method.

func (*MockLostMyIdService_SearchListClient) Context

Context mocks base method.

func (*MockLostMyIdService_SearchListClient) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockLostMyIdService_SearchListClient) Header

Header mocks base method.

func (*MockLostMyIdService_SearchListClient) Recv

Recv mocks base method.

func (*MockLostMyIdService_SearchListClient) RecvMsg

func (m_2 *MockLostMyIdService_SearchListClient) RecvMsg(m interface{}) error

RecvMsg mocks base method.

func (*MockLostMyIdService_SearchListClient) SendMsg

func (m_2 *MockLostMyIdService_SearchListClient) SendMsg(m interface{}) error

SendMsg mocks base method.

func (*MockLostMyIdService_SearchListClient) Trailer

Trailer mocks base method.

type MockLostMyIdService_SearchListClientMockRecorder

type MockLostMyIdService_SearchListClientMockRecorder struct {
	// contains filtered or unexported fields
}

MockLostMyIdService_SearchListClientMockRecorder is the mock recorder for MockLostMyIdService_SearchListClient.

func (*MockLostMyIdService_SearchListClientMockRecorder) CloseSend

CloseSend indicates an expected call of CloseSend.

func (*MockLostMyIdService_SearchListClientMockRecorder) Context

Context indicates an expected call of Context.

func (*MockLostMyIdService_SearchListClientMockRecorder) Header

Header indicates an expected call of Header.

func (*MockLostMyIdService_SearchListClientMockRecorder) Recv

Recv indicates an expected call of Recv.

func (*MockLostMyIdService_SearchListClientMockRecorder) RecvMsg

func (mr *MockLostMyIdService_SearchListClientMockRecorder) RecvMsg(m interface{}) *gomock.Call

RecvMsg indicates an expected call of RecvMsg.

func (*MockLostMyIdService_SearchListClientMockRecorder) SendMsg

func (mr *MockLostMyIdService_SearchListClientMockRecorder) SendMsg(m interface{}) *gomock.Call

SendMsg indicates an expected call of SendMsg.

func (*MockLostMyIdService_SearchListClientMockRecorder) Trailer

Trailer indicates an expected call of Trailer.

type MockLostMyIdService_SearchListServer

type MockLostMyIdService_SearchListServer struct {
	// contains filtered or unexported fields
}

MockLostMyIdService_SearchListServer is a mock of LostMyIdService_SearchListServer interface.

func NewMockLostMyIdService_SearchListServer

func NewMockLostMyIdService_SearchListServer(ctrl *gomock.Controller) *MockLostMyIdService_SearchListServer

NewMockLostMyIdService_SearchListServer creates a new mock instance.

func (*MockLostMyIdService_SearchListServer) Context

Context mocks base method.

func (*MockLostMyIdService_SearchListServer) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockLostMyIdService_SearchListServer) RecvMsg

func (m_2 *MockLostMyIdService_SearchListServer) RecvMsg(m interface{}) error

RecvMsg mocks base method.

func (*MockLostMyIdService_SearchListServer) Send

Send mocks base method.

func (*MockLostMyIdService_SearchListServer) SendHeader

SendHeader mocks base method.

func (*MockLostMyIdService_SearchListServer) SendMsg

func (m_2 *MockLostMyIdService_SearchListServer) SendMsg(m interface{}) error

SendMsg mocks base method.

func (*MockLostMyIdService_SearchListServer) SetHeader

SetHeader mocks base method.

func (*MockLostMyIdService_SearchListServer) SetTrailer

func (m *MockLostMyIdService_SearchListServer) SetTrailer(arg0 metadata.MD)

SetTrailer mocks base method.

type MockLostMyIdService_SearchListServerMockRecorder

type MockLostMyIdService_SearchListServerMockRecorder struct {
	// contains filtered or unexported fields
}

MockLostMyIdService_SearchListServerMockRecorder is the mock recorder for MockLostMyIdService_SearchListServer.

func (*MockLostMyIdService_SearchListServerMockRecorder) Context

Context indicates an expected call of Context.

func (*MockLostMyIdService_SearchListServerMockRecorder) RecvMsg

func (mr *MockLostMyIdService_SearchListServerMockRecorder) RecvMsg(m interface{}) *gomock.Call

RecvMsg indicates an expected call of RecvMsg.

func (*MockLostMyIdService_SearchListServerMockRecorder) Send

func (mr *MockLostMyIdService_SearchListServerMockRecorder) Send(arg0 interface{}) *gomock.Call

Send indicates an expected call of Send.

func (*MockLostMyIdService_SearchListServerMockRecorder) SendHeader

func (mr *MockLostMyIdService_SearchListServerMockRecorder) SendHeader(arg0 interface{}) *gomock.Call

SendHeader indicates an expected call of SendHeader.

func (*MockLostMyIdService_SearchListServerMockRecorder) SendMsg

func (mr *MockLostMyIdService_SearchListServerMockRecorder) SendMsg(m interface{}) *gomock.Call

SendMsg indicates an expected call of SendMsg.

func (*MockLostMyIdService_SearchListServerMockRecorder) SetHeader

func (mr *MockLostMyIdService_SearchListServerMockRecorder) SetHeader(arg0 interface{}) *gomock.Call

SetHeader indicates an expected call of SetHeader.

func (*MockLostMyIdService_SearchListServerMockRecorder) SetTrailer

func (mr *MockLostMyIdService_SearchListServerMockRecorder) SetTrailer(arg0 interface{}) *gomock.Call

SetTrailer indicates an expected call of SetTrailer.

type MockLostMyIdService_TransactionListClient

type MockLostMyIdService_TransactionListClient struct {
	// contains filtered or unexported fields
}

MockLostMyIdService_TransactionListClient is a mock of LostMyIdService_TransactionListClient interface.

func NewMockLostMyIdService_TransactionListClient

func NewMockLostMyIdService_TransactionListClient(ctrl *gomock.Controller) *MockLostMyIdService_TransactionListClient

NewMockLostMyIdService_TransactionListClient creates a new mock instance.

func (*MockLostMyIdService_TransactionListClient) CloseSend

CloseSend mocks base method.

func (*MockLostMyIdService_TransactionListClient) Context

Context mocks base method.

func (*MockLostMyIdService_TransactionListClient) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockLostMyIdService_TransactionListClient) Header

Header mocks base method.

func (*MockLostMyIdService_TransactionListClient) Recv

Recv mocks base method.

func (*MockLostMyIdService_TransactionListClient) RecvMsg

func (m_2 *MockLostMyIdService_TransactionListClient) RecvMsg(m interface{}) error

RecvMsg mocks base method.

func (*MockLostMyIdService_TransactionListClient) SendMsg

func (m_2 *MockLostMyIdService_TransactionListClient) SendMsg(m interface{}) error

SendMsg mocks base method.

func (*MockLostMyIdService_TransactionListClient) Trailer

Trailer mocks base method.

type MockLostMyIdService_TransactionListClientMockRecorder

type MockLostMyIdService_TransactionListClientMockRecorder struct {
	// contains filtered or unexported fields
}

MockLostMyIdService_TransactionListClientMockRecorder is the mock recorder for MockLostMyIdService_TransactionListClient.

func (*MockLostMyIdService_TransactionListClientMockRecorder) CloseSend

CloseSend indicates an expected call of CloseSend.

func (*MockLostMyIdService_TransactionListClientMockRecorder) Context

Context indicates an expected call of Context.

func (*MockLostMyIdService_TransactionListClientMockRecorder) Header

Header indicates an expected call of Header.

func (*MockLostMyIdService_TransactionListClientMockRecorder) Recv

Recv indicates an expected call of Recv.

func (*MockLostMyIdService_TransactionListClientMockRecorder) RecvMsg

RecvMsg indicates an expected call of RecvMsg.

func (*MockLostMyIdService_TransactionListClientMockRecorder) SendMsg

SendMsg indicates an expected call of SendMsg.

func (*MockLostMyIdService_TransactionListClientMockRecorder) Trailer

Trailer indicates an expected call of Trailer.

type MockLostMyIdService_TransactionListServer

type MockLostMyIdService_TransactionListServer struct {
	// contains filtered or unexported fields
}

MockLostMyIdService_TransactionListServer is a mock of LostMyIdService_TransactionListServer interface.

func NewMockLostMyIdService_TransactionListServer

func NewMockLostMyIdService_TransactionListServer(ctrl *gomock.Controller) *MockLostMyIdService_TransactionListServer

NewMockLostMyIdService_TransactionListServer creates a new mock instance.

func (*MockLostMyIdService_TransactionListServer) Context

Context mocks base method.

func (*MockLostMyIdService_TransactionListServer) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockLostMyIdService_TransactionListServer) RecvMsg

func (m_2 *MockLostMyIdService_TransactionListServer) RecvMsg(m interface{}) error

RecvMsg mocks base method.

func (*MockLostMyIdService_TransactionListServer) Send

Send mocks base method.

func (*MockLostMyIdService_TransactionListServer) SendHeader

SendHeader mocks base method.

func (*MockLostMyIdService_TransactionListServer) SendMsg

func (m_2 *MockLostMyIdService_TransactionListServer) SendMsg(m interface{}) error

SendMsg mocks base method.

func (*MockLostMyIdService_TransactionListServer) SetHeader

SetHeader mocks base method.

func (*MockLostMyIdService_TransactionListServer) SetTrailer

SetTrailer mocks base method.

type MockLostMyIdService_TransactionListServerMockRecorder

type MockLostMyIdService_TransactionListServerMockRecorder struct {
	// contains filtered or unexported fields
}

MockLostMyIdService_TransactionListServerMockRecorder is the mock recorder for MockLostMyIdService_TransactionListServer.

func (*MockLostMyIdService_TransactionListServerMockRecorder) Context

Context indicates an expected call of Context.

func (*MockLostMyIdService_TransactionListServerMockRecorder) RecvMsg

RecvMsg indicates an expected call of RecvMsg.

func (*MockLostMyIdService_TransactionListServerMockRecorder) Send

Send indicates an expected call of Send.

func (*MockLostMyIdService_TransactionListServerMockRecorder) SendHeader

func (mr *MockLostMyIdService_TransactionListServerMockRecorder) SendHeader(arg0 interface{}) *gomock.Call

SendHeader indicates an expected call of SendHeader.

func (*MockLostMyIdService_TransactionListServerMockRecorder) SendMsg

SendMsg indicates an expected call of SendMsg.

func (*MockLostMyIdService_TransactionListServerMockRecorder) SetHeader

func (mr *MockLostMyIdService_TransactionListServerMockRecorder) SetHeader(arg0 interface{}) *gomock.Call

SetHeader indicates an expected call of SetHeader.

func (*MockLostMyIdService_TransactionListServerMockRecorder) SetTrailer

func (mr *MockLostMyIdService_TransactionListServerMockRecorder) SetTrailer(arg0 interface{}) *gomock.Call

SetTrailer indicates an expected call of SetTrailer.

type MockUnsafeLostMyIdServiceServer

type MockUnsafeLostMyIdServiceServer struct {
	// contains filtered or unexported fields
}

MockUnsafeLostMyIdServiceServer is a mock of UnsafeLostMyIdServiceServer interface.

func NewMockUnsafeLostMyIdServiceServer

func NewMockUnsafeLostMyIdServiceServer(ctrl *gomock.Controller) *MockUnsafeLostMyIdServiceServer

NewMockUnsafeLostMyIdServiceServer creates a new mock instance.

func (*MockUnsafeLostMyIdServiceServer) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

type MockUnsafeLostMyIdServiceServerMockRecorder

type MockUnsafeLostMyIdServiceServerMockRecorder struct {
	// contains filtered or unexported fields
}

MockUnsafeLostMyIdServiceServerMockRecorder is the mock recorder for MockUnsafeLostMyIdServiceServer.

type Pagination

type Pagination struct {
	Count int32 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
	Page  int32 `protobuf:"varint,2,opt,name=page,proto3" json:"page,omitempty"`
	// contains filtered or unexported fields
}

func (*Pagination) Descriptor deprecated

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

Deprecated: Use Pagination.ProtoReflect.Descriptor instead.

func (*Pagination) GetCount

func (x *Pagination) GetCount() int32

func (*Pagination) GetPage

func (x *Pagination) GetPage() int32

func (*Pagination) ProtoMessage

func (*Pagination) ProtoMessage()

func (*Pagination) ProtoReflect

func (x *Pagination) ProtoReflect() protoreflect.Message

func (*Pagination) Reset

func (x *Pagination) Reset()

func (*Pagination) String

func (x *Pagination) String() string

func (*Pagination) Validate

func (m *Pagination) Validate() error

Validate checks the field values on Pagination with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type PaginationValidationError

type PaginationValidationError struct {
	// contains filtered or unexported fields
}

PaginationValidationError is the validation error returned by Pagination.Validate if the designated constraints aren't met.

func (PaginationValidationError) Cause

func (e PaginationValidationError) Cause() error

Cause function returns cause value.

func (PaginationValidationError) Error

Error satisfies the builtin error interface

func (PaginationValidationError) ErrorName

func (e PaginationValidationError) ErrorName() string

ErrorName returns error name.

func (PaginationValidationError) Field

Field function returns field value.

func (PaginationValidationError) Key

Key function returns key value.

func (PaginationValidationError) Reason

func (e PaginationValidationError) Reason() string

Reason function returns reason value.

type ProgressItem

type ProgressItem struct {
	Id          string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Datetime    string `protobuf:"bytes,2,opt,name=datetime,proto3" json:"datetime,omitempty"`
	State       string `protobuf:"bytes,3,opt,name=state,proto3" json:"state,omitempty"`
	Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"`
	// contains filtered or unexported fields
}

func (*ProgressItem) Descriptor deprecated

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

Deprecated: Use ProgressItem.ProtoReflect.Descriptor instead.

func (*ProgressItem) GetDatetime

func (x *ProgressItem) GetDatetime() string

func (*ProgressItem) GetDescription

func (x *ProgressItem) GetDescription() string

func (*ProgressItem) GetId

func (x *ProgressItem) GetId() string

func (*ProgressItem) GetState

func (x *ProgressItem) GetState() string

func (*ProgressItem) ProtoMessage

func (*ProgressItem) ProtoMessage()

func (*ProgressItem) ProtoReflect

func (x *ProgressItem) ProtoReflect() protoreflect.Message

func (*ProgressItem) Reset

func (x *ProgressItem) Reset()

func (*ProgressItem) String

func (x *ProgressItem) String() string

func (*ProgressItem) Validate

func (m *ProgressItem) Validate() error

Validate checks the field values on ProgressItem with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ProgressItemValidationError

type ProgressItemValidationError struct {
	// contains filtered or unexported fields
}

ProgressItemValidationError is the validation error returned by ProgressItem.Validate if the designated constraints aren't met.

func (ProgressItemValidationError) Cause

Cause function returns cause value.

func (ProgressItemValidationError) Error

Error satisfies the builtin error interface

func (ProgressItemValidationError) ErrorName

func (e ProgressItemValidationError) ErrorName() string

ErrorName returns error name.

func (ProgressItemValidationError) Field

Field function returns field value.

func (ProgressItemValidationError) Key

Key function returns key value.

func (ProgressItemValidationError) Reason

Reason function returns reason value.

type ProgressRequest

type ProgressRequest struct {
	Id   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Type ITEMType `protobuf:"varint,2,opt,name=type,proto3,enum=apis.ITEMType" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*ProgressRequest) Descriptor deprecated

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

Deprecated: Use ProgressRequest.ProtoReflect.Descriptor instead.

func (*ProgressRequest) GetId

func (x *ProgressRequest) GetId() string

func (*ProgressRequest) GetType

func (x *ProgressRequest) GetType() ITEMType

func (*ProgressRequest) ProtoMessage

func (*ProgressRequest) ProtoMessage()

func (*ProgressRequest) ProtoReflect

func (x *ProgressRequest) ProtoReflect() protoreflect.Message

func (*ProgressRequest) Reset

func (x *ProgressRequest) Reset()

func (*ProgressRequest) String

func (x *ProgressRequest) String() string

func (*ProgressRequest) Validate

func (m *ProgressRequest) Validate() error

Validate checks the field values on ProgressRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ProgressRequestValidationError

type ProgressRequestValidationError struct {
	// contains filtered or unexported fields
}

ProgressRequestValidationError is the validation error returned by ProgressRequest.Validate if the designated constraints aren't met.

func (ProgressRequestValidationError) Cause

Cause function returns cause value.

func (ProgressRequestValidationError) Error

Error satisfies the builtin error interface

func (ProgressRequestValidationError) ErrorName

func (e ProgressRequestValidationError) ErrorName() string

ErrorName returns error name.

func (ProgressRequestValidationError) Field

Field function returns field value.

func (ProgressRequestValidationError) Key

Key function returns key value.

func (ProgressRequestValidationError) Reason

Reason function returns reason value.

type ProgressResponse

type ProgressResponse struct {
	Id           string             `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Type         ITEMType           `protobuf:"varint,2,opt,name=type,proto3,enum=apis.ITEMType" json:"type,omitempty"`
	Properties   map[string]string  `` /* 161-byte string literal not displayed */
	State        string             `protobuf:"bytes,4,opt,name=state,proto3" json:"state,omitempty"`
	Items        []*ProgressItem    `protobuf:"bytes,5,rep,name=items,proto3" json:"items,omitempty"`
	Transactions []*TransactionItem `protobuf:"bytes,6,rep,name=transactions,proto3" json:"transactions,omitempty"`
	// contains filtered or unexported fields
}

func (*ProgressResponse) Descriptor deprecated

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

Deprecated: Use ProgressResponse.ProtoReflect.Descriptor instead.

func (*ProgressResponse) GetId

func (x *ProgressResponse) GetId() string

func (*ProgressResponse) GetItems

func (x *ProgressResponse) GetItems() []*ProgressItem

func (*ProgressResponse) GetProperties

func (x *ProgressResponse) GetProperties() map[string]string

func (*ProgressResponse) GetState

func (x *ProgressResponse) GetState() string

func (*ProgressResponse) GetTransactions

func (x *ProgressResponse) GetTransactions() []*TransactionItem

func (*ProgressResponse) GetType

func (x *ProgressResponse) GetType() ITEMType

func (*ProgressResponse) ProtoMessage

func (*ProgressResponse) ProtoMessage()

func (*ProgressResponse) ProtoReflect

func (x *ProgressResponse) ProtoReflect() protoreflect.Message

func (*ProgressResponse) Reset

func (x *ProgressResponse) Reset()

func (*ProgressResponse) String

func (x *ProgressResponse) String() string

func (*ProgressResponse) Validate

func (m *ProgressResponse) Validate() error

Validate checks the field values on ProgressResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ProgressResponseValidationError

type ProgressResponseValidationError struct {
	// contains filtered or unexported fields
}

ProgressResponseValidationError is the validation error returned by ProgressResponse.Validate if the designated constraints aren't met.

func (ProgressResponseValidationError) Cause

Cause function returns cause value.

func (ProgressResponseValidationError) Error

Error satisfies the builtin error interface

func (ProgressResponseValidationError) ErrorName

ErrorName returns error name.

func (ProgressResponseValidationError) Field

Field function returns field value.

func (ProgressResponseValidationError) Key

Key function returns key value.

func (ProgressResponseValidationError) Reason

Reason function returns reason value.

type RangeSpanRequest

type RangeSpanRequest struct {

	// Types that are assignable to Range:
	//	*RangeSpanRequest_Pagination
	//	*RangeSpanRequest_Interval
	Range isRangeSpanRequest_Range `protobuf_oneof:"range"`
	// contains filtered or unexported fields
}

func (*RangeSpanRequest) Descriptor deprecated

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

Deprecated: Use RangeSpanRequest.ProtoReflect.Descriptor instead.

func (*RangeSpanRequest) GetInterval

func (x *RangeSpanRequest) GetInterval() *interval.Interval

func (*RangeSpanRequest) GetPagination

func (x *RangeSpanRequest) GetPagination() *Pagination

func (*RangeSpanRequest) GetRange

func (m *RangeSpanRequest) GetRange() isRangeSpanRequest_Range

func (*RangeSpanRequest) ProtoMessage

func (*RangeSpanRequest) ProtoMessage()

func (*RangeSpanRequest) ProtoReflect

func (x *RangeSpanRequest) ProtoReflect() protoreflect.Message

func (*RangeSpanRequest) Reset

func (x *RangeSpanRequest) Reset()

func (*RangeSpanRequest) String

func (x *RangeSpanRequest) String() string

func (*RangeSpanRequest) Validate

func (m *RangeSpanRequest) Validate() error

Validate checks the field values on RangeSpanRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type RangeSpanRequestValidationError

type RangeSpanRequestValidationError struct {
	// contains filtered or unexported fields
}

RangeSpanRequestValidationError is the validation error returned by RangeSpanRequest.Validate if the designated constraints aren't met.

func (RangeSpanRequestValidationError) Cause

Cause function returns cause value.

func (RangeSpanRequestValidationError) Error

Error satisfies the builtin error interface

func (RangeSpanRequestValidationError) ErrorName

ErrorName returns error name.

func (RangeSpanRequestValidationError) Field

Field function returns field value.

func (RangeSpanRequestValidationError) Key

Key function returns key value.

func (RangeSpanRequestValidationError) Reason

Reason function returns reason value.

type RangeSpanRequest_Interval

type RangeSpanRequest_Interval struct {
	Interval *interval.Interval `protobuf:"bytes,2,opt,name=interval,proto3,oneof"`
}

type RangeSpanRequest_Pagination

type RangeSpanRequest_Pagination struct {
	Pagination *Pagination `protobuf:"bytes,1,opt,name=pagination,proto3,oneof"`
}

type SearchRequest

type SearchRequest struct {
	Id         string            `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Query      string            `protobuf:"bytes,2,opt,name=query,proto3" json:"query,omitempty"`
	Properties map[string]string `` /* 161-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*SearchRequest) Descriptor deprecated

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

Deprecated: Use SearchRequest.ProtoReflect.Descriptor instead.

func (*SearchRequest) GetId

func (x *SearchRequest) GetId() string

func (*SearchRequest) GetProperties

func (x *SearchRequest) GetProperties() map[string]string

func (*SearchRequest) GetQuery

func (x *SearchRequest) GetQuery() string

func (*SearchRequest) ProtoMessage

func (*SearchRequest) ProtoMessage()

func (*SearchRequest) ProtoReflect

func (x *SearchRequest) ProtoReflect() protoreflect.Message

func (*SearchRequest) Reset

func (x *SearchRequest) Reset()

func (*SearchRequest) String

func (x *SearchRequest) String() string

func (*SearchRequest) Validate

func (m *SearchRequest) Validate() error

Validate checks the field values on SearchRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type SearchRequestValidationError

type SearchRequestValidationError struct {
	// contains filtered or unexported fields
}

SearchRequestValidationError is the validation error returned by SearchRequest.Validate if the designated constraints aren't met.

func (SearchRequestValidationError) Cause

Cause function returns cause value.

func (SearchRequestValidationError) Error

Error satisfies the builtin error interface

func (SearchRequestValidationError) ErrorName

func (e SearchRequestValidationError) ErrorName() string

ErrorName returns error name.

func (SearchRequestValidationError) Field

Field function returns field value.

func (SearchRequestValidationError) Key

Key function returns key value.

func (SearchRequestValidationError) Reason

Reason function returns reason value.

type SearchResponse

type SearchResponse struct {
	Id         string            `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Query      string            `protobuf:"bytes,2,opt,name=query,proto3" json:"query,omitempty"`
	Properties map[string]string `` /* 161-byte string literal not displayed */
	State      string            `protobuf:"bytes,4,opt,name=state,proto3" json:"state,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchResponse) Descriptor deprecated

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

Deprecated: Use SearchResponse.ProtoReflect.Descriptor instead.

func (*SearchResponse) GetId

func (x *SearchResponse) GetId() string

func (*SearchResponse) GetProperties

func (x *SearchResponse) GetProperties() map[string]string

func (*SearchResponse) GetQuery

func (x *SearchResponse) GetQuery() string

func (*SearchResponse) GetState

func (x *SearchResponse) GetState() string

func (*SearchResponse) ProtoMessage

func (*SearchResponse) ProtoMessage()

func (*SearchResponse) ProtoReflect

func (x *SearchResponse) ProtoReflect() protoreflect.Message

func (*SearchResponse) Reset

func (x *SearchResponse) Reset()

func (*SearchResponse) String

func (x *SearchResponse) String() string

func (*SearchResponse) Validate

func (m *SearchResponse) Validate() error

Validate checks the field values on SearchResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type SearchResponseValidationError

type SearchResponseValidationError struct {
	// contains filtered or unexported fields
}

SearchResponseValidationError is the validation error returned by SearchResponse.Validate if the designated constraints aren't met.

func (SearchResponseValidationError) Cause

Cause function returns cause value.

func (SearchResponseValidationError) Error

Error satisfies the builtin error interface

func (SearchResponseValidationError) ErrorName

func (e SearchResponseValidationError) ErrorName() string

ErrorName returns error name.

func (SearchResponseValidationError) Field

Field function returns field value.

func (SearchResponseValidationError) Key

Key function returns key value.

func (SearchResponseValidationError) Reason

Reason function returns reason value.

type TransactionItem

type TransactionItem struct {
	Id          string       `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Datetime    string       `protobuf:"bytes,2,opt,name=datetime,proto3" json:"datetime,omitempty"`
	Credit      bool         `protobuf:"varint,3,opt,name=credit,proto3" json:"credit,omitempty"`
	Amount      *money.Money `protobuf:"bytes,4,opt,name=amount,proto3" json:"amount,omitempty"`
	Description string       `protobuf:"bytes,5,opt,name=description,proto3" json:"description,omitempty"`
	// contains filtered or unexported fields
}

func (*TransactionItem) Descriptor deprecated

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

Deprecated: Use TransactionItem.ProtoReflect.Descriptor instead.

func (*TransactionItem) GetAmount

func (x *TransactionItem) GetAmount() *money.Money

func (*TransactionItem) GetCredit

func (x *TransactionItem) GetCredit() bool

func (*TransactionItem) GetDatetime

func (x *TransactionItem) GetDatetime() string

func (*TransactionItem) GetDescription

func (x *TransactionItem) GetDescription() string

func (*TransactionItem) GetId

func (x *TransactionItem) GetId() string

func (*TransactionItem) ProtoMessage

func (*TransactionItem) ProtoMessage()

func (*TransactionItem) ProtoReflect

func (x *TransactionItem) ProtoReflect() protoreflect.Message

func (*TransactionItem) Reset

func (x *TransactionItem) Reset()

func (*TransactionItem) String

func (x *TransactionItem) String() string

func (*TransactionItem) Validate

func (m *TransactionItem) Validate() error

Validate checks the field values on TransactionItem with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type TransactionItemValidationError

type TransactionItemValidationError struct {
	// contains filtered or unexported fields
}

TransactionItemValidationError is the validation error returned by TransactionItem.Validate if the designated constraints aren't met.

func (TransactionItemValidationError) Cause

Cause function returns cause value.

func (TransactionItemValidationError) Error

Error satisfies the builtin error interface

func (TransactionItemValidationError) ErrorName

func (e TransactionItemValidationError) ErrorName() string

ErrorName returns error name.

func (TransactionItemValidationError) Field

Field function returns field value.

func (TransactionItemValidationError) Key

Key function returns key value.

func (TransactionItemValidationError) Reason

Reason function returns reason value.

type UnimplementedLostMyIdServiceServer

type UnimplementedLostMyIdServiceServer struct {
}

UnimplementedLostMyIdServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedLostMyIdServiceServer) Collectible

func (UnimplementedLostMyIdServiceServer) CollectibleList

func (UnimplementedLostMyIdServiceServer) Progress

func (UnimplementedLostMyIdServiceServer) Search

func (UnimplementedLostMyIdServiceServer) SearchList

func (UnimplementedLostMyIdServiceServer) TransactionList

type UnsafeLostMyIdServiceServer

type UnsafeLostMyIdServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeLostMyIdServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to LostMyIdServiceServer will result in compilation errors.

Jump to

Keyboard shortcuts

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