confpb

package
v0.0.0-...-7d0a2b6 Latest Latest
Warning

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

Go to latest
Published: Jan 15, 2021 License: Apache-2.0 Imports: 13 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidLengthConfpb        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowConfpb          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupConfpb = fmt.Errorf("proto: unexpected end of group")
)

Functions

func RegisterConfServer

func RegisterConfServer(s *grpc.Server, srv ConfServer)

Types

type Account

type Account struct {
	Id           int64   `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	AccountType  string  `protobuf:"bytes,2,opt,name=account_type,json=accountType,proto3" json:"account_type,omitempty"`
	CurrencyCode string  `protobuf:"bytes,3,opt,name=currency_code,json=currencyCode,proto3" json:"currency_code,omitempty"`
	ServiceName  string  `protobuf:"bytes,4,opt,name=service_name,json=serviceName,proto3" json:"service_name,omitempty"`
	Username     string  `protobuf:"bytes,5,opt,name=username,proto3" json:"username,omitempty"`
	Password     string  `protobuf:"bytes,6,opt,name=password,proto3" json:"password,omitempty"`
	Commission   float64 `protobuf:"fixed64,7,opt,name=commission,proto3" json:"commission,omitempty"`
	Share        float64 `protobuf:"fixed64,8,opt,name=share,proto3" json:"share,omitempty"`
}

func (*Account) Descriptor

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

func (*Account) Equal

func (this *Account) Equal(that interface{}) bool

func (*Account) GetAccountType

func (m *Account) GetAccountType() string

func (*Account) GetCommission

func (m *Account) GetCommission() float64

func (*Account) GetCurrencyCode

func (m *Account) GetCurrencyCode() string

func (*Account) GetId

func (m *Account) GetId() int64

func (*Account) GetPassword

func (m *Account) GetPassword() string

func (*Account) GetServiceName

func (m *Account) GetServiceName() string

func (*Account) GetShare

func (m *Account) GetShare() float64

func (*Account) GetUsername

func (m *Account) GetUsername() string

func (*Account) GoString

func (this *Account) GoString() string

func (*Account) Marshal

func (m *Account) Marshal() (dAtA []byte, err error)

func (*Account) MarshalTo

func (m *Account) MarshalTo(dAtA []byte) (int, error)

func (*Account) MarshalToSizedBuffer

func (m *Account) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Account) ProtoMessage

func (*Account) ProtoMessage()

func (*Account) Reset

func (m *Account) Reset()

func (*Account) Size

func (m *Account) Size() (n int)

func (*Account) String

func (this *Account) String() string

func (*Account) Unmarshal

func (m *Account) Unmarshal(dAtA []byte) error

func (*Account) XXX_DiscardUnknown

func (m *Account) XXX_DiscardUnknown()

func (*Account) XXX_Marshal

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

func (*Account) XXX_Merge

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

func (*Account) XXX_Size

func (m *Account) XXX_Size() int

func (*Account) XXX_Unmarshal

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

type BetService

type BetService struct {
	Id          int64  `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	FortedName  string `protobuf:"bytes,2,opt,name=forted_name,json=fortedName,proto3" json:"forted_name,omitempty"`
	ServiceName string `protobuf:"bytes,3,opt,name=service_name,json=serviceName,proto3" json:"service_name,omitempty"`
	GrpcPort    int64  `protobuf:"varint,4,opt,name=grpc_port,json=grpcPort,proto3" json:"grpc_port,omitempty"`
}

func (*BetService) Descriptor

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

func (*BetService) Equal

func (this *BetService) Equal(that interface{}) bool

func (*BetService) GetFortedName

func (m *BetService) GetFortedName() string

func (*BetService) GetGrpcPort

func (m *BetService) GetGrpcPort() int64

func (*BetService) GetId

func (m *BetService) GetId() int64

func (*BetService) GetServiceName

func (m *BetService) GetServiceName() string

func (*BetService) GoString

func (this *BetService) GoString() string

func (*BetService) Marshal

func (m *BetService) Marshal() (dAtA []byte, err error)

func (*BetService) MarshalTo

func (m *BetService) MarshalTo(dAtA []byte) (int, error)

func (*BetService) MarshalToSizedBuffer

func (m *BetService) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*BetService) ProtoMessage

func (*BetService) ProtoMessage()

func (*BetService) Reset

func (m *BetService) Reset()

func (*BetService) Size

func (m *BetService) Size() (n int)

func (*BetService) String

func (this *BetService) String() string

func (*BetService) Unmarshal

func (m *BetService) Unmarshal(dAtA []byte) error

func (*BetService) XXX_DiscardUnknown

func (m *BetService) XXX_DiscardUnknown()

func (*BetService) XXX_Marshal

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

func (*BetService) XXX_Merge

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

func (*BetService) XXX_Size

func (m *BetService) XXX_Size() int

func (*BetService) XXX_Unmarshal

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

type ConfClient

type ConfClient interface {
	Ping(ctx context.Context, in *PingRequest, opts ...grpc.CallOption) (*PingResponse, error)
	GetConfig(ctx context.Context, in *GetConfigRequest, opts ...grpc.CallOption) (*GetConfigResponse, error)
	GetAccount(ctx context.Context, in *GetAccountRequest, opts ...grpc.CallOption) (*GetAccountResponse, error)
	GetCurrency(ctx context.Context, in *GetCurrencyRequest, opts ...grpc.CallOption) (*GetCurrencyResponse, error)
	GetServices(ctx context.Context, in *GetServicesRequest, opts ...grpc.CallOption) (*GetServicesResponse, error)
	GetNetStatus(ctx context.Context, in *GetNetStatusRequest, opts ...grpc.CallOption) (*GetNetStatusResponse, error)
}

ConfClient is the client API for Conf service.

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

func NewConfClient

func NewConfClient(cc *grpc.ClientConn) ConfClient

type ConfServer

ConfServer is the server API for Conf service.

type Currency

type Currency struct {
	Code  string  `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
	Value float64 `protobuf:"fixed64,2,opt,name=value,proto3" json:"value,omitempty"`
}

func (*Currency) Descriptor

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

func (*Currency) Equal

func (this *Currency) Equal(that interface{}) bool

func (*Currency) GetCode

func (m *Currency) GetCode() string

func (*Currency) GetValue

func (m *Currency) GetValue() float64

func (*Currency) GoString

func (this *Currency) GoString() string

func (*Currency) Marshal

func (m *Currency) Marshal() (dAtA []byte, err error)

func (*Currency) MarshalTo

func (m *Currency) MarshalTo(dAtA []byte) (int, error)

func (*Currency) MarshalToSizedBuffer

func (m *Currency) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Currency) ProtoMessage

func (*Currency) ProtoMessage()

func (*Currency) Reset

func (m *Currency) Reset()

func (*Currency) Size

func (m *Currency) Size() (n int)

func (*Currency) String

func (this *Currency) String() string

func (*Currency) Unmarshal

func (m *Currency) Unmarshal(dAtA []byte) error

func (*Currency) XXX_DiscardUnknown

func (m *Currency) XXX_DiscardUnknown()

func (*Currency) XXX_Marshal

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

func (*Currency) XXX_Merge

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

func (*Currency) XXX_Size

func (m *Currency) XXX_Size() int

func (*Currency) XXX_Unmarshal

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

type GetAccountRequest

type GetAccountRequest struct {
	ServiceName string `protobuf:"bytes,1,opt,name=service_name,json=serviceName,proto3" json:"service_name,omitempty"`
}

--------------------------------------------------------

func (*GetAccountRequest) Descriptor

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

func (*GetAccountRequest) Equal

func (this *GetAccountRequest) Equal(that interface{}) bool

func (*GetAccountRequest) GetServiceName

func (m *GetAccountRequest) GetServiceName() string

func (*GetAccountRequest) GoString

func (this *GetAccountRequest) GoString() string

func (*GetAccountRequest) Marshal

func (m *GetAccountRequest) Marshal() (dAtA []byte, err error)

func (*GetAccountRequest) MarshalTo

func (m *GetAccountRequest) MarshalTo(dAtA []byte) (int, error)

func (*GetAccountRequest) MarshalToSizedBuffer

func (m *GetAccountRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetAccountRequest) ProtoMessage

func (*GetAccountRequest) ProtoMessage()

func (*GetAccountRequest) Reset

func (m *GetAccountRequest) Reset()

func (*GetAccountRequest) Size

func (m *GetAccountRequest) Size() (n int)

func (*GetAccountRequest) String

func (this *GetAccountRequest) String() string

func (*GetAccountRequest) Unmarshal

func (m *GetAccountRequest) Unmarshal(dAtA []byte) error

func (*GetAccountRequest) XXX_DiscardUnknown

func (m *GetAccountRequest) XXX_DiscardUnknown()

func (*GetAccountRequest) XXX_Marshal

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

func (*GetAccountRequest) XXX_Merge

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

func (*GetAccountRequest) XXX_Size

func (m *GetAccountRequest) XXX_Size() int

func (*GetAccountRequest) XXX_Unmarshal

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

type GetAccountResponse

type GetAccountResponse struct {
	Account Account `protobuf:"bytes,1,opt,name=account,proto3" json:"account"`
}

func (*GetAccountResponse) Descriptor

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

func (*GetAccountResponse) Equal

func (this *GetAccountResponse) Equal(that interface{}) bool

func (*GetAccountResponse) GetAccount

func (m *GetAccountResponse) GetAccount() Account

func (*GetAccountResponse) GoString

func (this *GetAccountResponse) GoString() string

func (*GetAccountResponse) Marshal

func (m *GetAccountResponse) Marshal() (dAtA []byte, err error)

func (*GetAccountResponse) MarshalTo

func (m *GetAccountResponse) MarshalTo(dAtA []byte) (int, error)

func (*GetAccountResponse) MarshalToSizedBuffer

func (m *GetAccountResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetAccountResponse) ProtoMessage

func (*GetAccountResponse) ProtoMessage()

func (*GetAccountResponse) Reset

func (m *GetAccountResponse) Reset()

func (*GetAccountResponse) Size

func (m *GetAccountResponse) Size() (n int)

func (*GetAccountResponse) String

func (this *GetAccountResponse) String() string

func (*GetAccountResponse) Unmarshal

func (m *GetAccountResponse) Unmarshal(dAtA []byte) error

func (*GetAccountResponse) XXX_DiscardUnknown

func (m *GetAccountResponse) XXX_DiscardUnknown()

func (*GetAccountResponse) XXX_Marshal

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

func (*GetAccountResponse) XXX_Merge

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

func (*GetAccountResponse) XXX_Size

func (m *GetAccountResponse) XXX_Size() int

func (*GetAccountResponse) XXX_Unmarshal

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

type GetConfigRequest

type GetConfigRequest struct {
	ServiceName string `protobuf:"bytes,1,opt,name=service_name,json=serviceName,proto3" json:"service_name,omitempty"`
}

---------------------------------------------------------------

func (*GetConfigRequest) Descriptor

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

func (*GetConfigRequest) Equal

func (this *GetConfigRequest) Equal(that interface{}) bool

func (*GetConfigRequest) GetServiceName

func (m *GetConfigRequest) GetServiceName() string

func (*GetConfigRequest) GoString

func (this *GetConfigRequest) GoString() string

func (*GetConfigRequest) Marshal

func (m *GetConfigRequest) Marshal() (dAtA []byte, err error)

func (*GetConfigRequest) MarshalTo

func (m *GetConfigRequest) MarshalTo(dAtA []byte) (int, error)

func (*GetConfigRequest) MarshalToSizedBuffer

func (m *GetConfigRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetConfigRequest) ProtoMessage

func (*GetConfigRequest) ProtoMessage()

func (*GetConfigRequest) Reset

func (m *GetConfigRequest) Reset()

func (*GetConfigRequest) Size

func (m *GetConfigRequest) Size() (n int)

func (*GetConfigRequest) String

func (this *GetConfigRequest) String() string

func (*GetConfigRequest) Unmarshal

func (m *GetConfigRequest) Unmarshal(dAtA []byte) error

func (*GetConfigRequest) XXX_DiscardUnknown

func (m *GetConfigRequest) XXX_DiscardUnknown()

func (*GetConfigRequest) XXX_Marshal

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

func (*GetConfigRequest) XXX_Merge

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

func (*GetConfigRequest) XXX_Size

func (m *GetConfigRequest) XXX_Size() int

func (*GetConfigRequest) XXX_Unmarshal

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

type GetConfigResponse

type GetConfigResponse struct {
	ServiceConfig ServiceConfig `protobuf:"bytes,1,opt,name=service_config,json=serviceConfig,proto3" json:"service_config"`
}

func (*GetConfigResponse) Descriptor

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

func (*GetConfigResponse) Equal

func (this *GetConfigResponse) Equal(that interface{}) bool

func (*GetConfigResponse) GetServiceConfig

func (m *GetConfigResponse) GetServiceConfig() ServiceConfig

func (*GetConfigResponse) GoString

func (this *GetConfigResponse) GoString() string

func (*GetConfigResponse) Marshal

func (m *GetConfigResponse) Marshal() (dAtA []byte, err error)

func (*GetConfigResponse) MarshalTo

func (m *GetConfigResponse) MarshalTo(dAtA []byte) (int, error)

func (*GetConfigResponse) MarshalToSizedBuffer

func (m *GetConfigResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetConfigResponse) ProtoMessage

func (*GetConfigResponse) ProtoMessage()

func (*GetConfigResponse) Reset

func (m *GetConfigResponse) Reset()

func (*GetConfigResponse) Size

func (m *GetConfigResponse) Size() (n int)

func (*GetConfigResponse) String

func (this *GetConfigResponse) String() string

func (*GetConfigResponse) Unmarshal

func (m *GetConfigResponse) Unmarshal(dAtA []byte) error

func (*GetConfigResponse) XXX_DiscardUnknown

func (m *GetConfigResponse) XXX_DiscardUnknown()

func (*GetConfigResponse) XXX_Marshal

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

func (*GetConfigResponse) XXX_Merge

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

func (*GetConfigResponse) XXX_Size

func (m *GetConfigResponse) XXX_Size() int

func (*GetConfigResponse) XXX_Unmarshal

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

type GetCurrencyRequest

type GetCurrencyRequest struct {
}

-------------------------------------------------------

func (*GetCurrencyRequest) Descriptor

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

func (*GetCurrencyRequest) Equal

func (this *GetCurrencyRequest) Equal(that interface{}) bool

func (*GetCurrencyRequest) GoString

func (this *GetCurrencyRequest) GoString() string

func (*GetCurrencyRequest) Marshal

func (m *GetCurrencyRequest) Marshal() (dAtA []byte, err error)

func (*GetCurrencyRequest) MarshalTo

func (m *GetCurrencyRequest) MarshalTo(dAtA []byte) (int, error)

func (*GetCurrencyRequest) MarshalToSizedBuffer

func (m *GetCurrencyRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetCurrencyRequest) ProtoMessage

func (*GetCurrencyRequest) ProtoMessage()

func (*GetCurrencyRequest) Reset

func (m *GetCurrencyRequest) Reset()

func (*GetCurrencyRequest) Size

func (m *GetCurrencyRequest) Size() (n int)

func (*GetCurrencyRequest) String

func (this *GetCurrencyRequest) String() string

func (*GetCurrencyRequest) Unmarshal

func (m *GetCurrencyRequest) Unmarshal(dAtA []byte) error

func (*GetCurrencyRequest) XXX_DiscardUnknown

func (m *GetCurrencyRequest) XXX_DiscardUnknown()

func (*GetCurrencyRequest) XXX_Marshal

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

func (*GetCurrencyRequest) XXX_Merge

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

func (*GetCurrencyRequest) XXX_Size

func (m *GetCurrencyRequest) XXX_Size() int

func (*GetCurrencyRequest) XXX_Unmarshal

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

type GetCurrencyResponse

type GetCurrencyResponse struct {
	CurrencyList []Currency `protobuf:"bytes,1,rep,name=currency_list,json=currencyList,proto3" json:"currency_list"`
}

func (*GetCurrencyResponse) Descriptor

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

func (*GetCurrencyResponse) Equal

func (this *GetCurrencyResponse) Equal(that interface{}) bool

func (*GetCurrencyResponse) GetCurrencyList

func (m *GetCurrencyResponse) GetCurrencyList() []Currency

func (*GetCurrencyResponse) GoString

func (this *GetCurrencyResponse) GoString() string

func (*GetCurrencyResponse) Marshal

func (m *GetCurrencyResponse) Marshal() (dAtA []byte, err error)

func (*GetCurrencyResponse) MarshalTo

func (m *GetCurrencyResponse) MarshalTo(dAtA []byte) (int, error)

func (*GetCurrencyResponse) MarshalToSizedBuffer

func (m *GetCurrencyResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetCurrencyResponse) ProtoMessage

func (*GetCurrencyResponse) ProtoMessage()

func (*GetCurrencyResponse) Reset

func (m *GetCurrencyResponse) Reset()

func (*GetCurrencyResponse) Size

func (m *GetCurrencyResponse) Size() (n int)

func (*GetCurrencyResponse) String

func (this *GetCurrencyResponse) String() string

func (*GetCurrencyResponse) Unmarshal

func (m *GetCurrencyResponse) Unmarshal(dAtA []byte) error

func (*GetCurrencyResponse) XXX_DiscardUnknown

func (m *GetCurrencyResponse) XXX_DiscardUnknown()

func (*GetCurrencyResponse) XXX_Marshal

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

func (*GetCurrencyResponse) XXX_Merge

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

func (*GetCurrencyResponse) XXX_Size

func (m *GetCurrencyResponse) XXX_Size() int

func (*GetCurrencyResponse) XXX_Unmarshal

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

type GetNetStatusRequest

type GetNetStatusRequest struct {
}

func (*GetNetStatusRequest) Descriptor

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

func (*GetNetStatusRequest) Equal

func (this *GetNetStatusRequest) Equal(that interface{}) bool

func (*GetNetStatusRequest) GoString

func (this *GetNetStatusRequest) GoString() string

func (*GetNetStatusRequest) Marshal

func (m *GetNetStatusRequest) Marshal() (dAtA []byte, err error)

func (*GetNetStatusRequest) MarshalTo

func (m *GetNetStatusRequest) MarshalTo(dAtA []byte) (int, error)

func (*GetNetStatusRequest) MarshalToSizedBuffer

func (m *GetNetStatusRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetNetStatusRequest) ProtoMessage

func (*GetNetStatusRequest) ProtoMessage()

func (*GetNetStatusRequest) Reset

func (m *GetNetStatusRequest) Reset()

func (*GetNetStatusRequest) Size

func (m *GetNetStatusRequest) Size() (n int)

func (*GetNetStatusRequest) String

func (this *GetNetStatusRequest) String() string

func (*GetNetStatusRequest) Unmarshal

func (m *GetNetStatusRequest) Unmarshal(dAtA []byte) error

func (*GetNetStatusRequest) XXX_DiscardUnknown

func (m *GetNetStatusRequest) XXX_DiscardUnknown()

func (*GetNetStatusRequest) XXX_Marshal

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

func (*GetNetStatusRequest) XXX_Merge

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

func (*GetNetStatusRequest) XXX_Size

func (m *GetNetStatusRequest) XXX_Size() int

func (*GetNetStatusRequest) XXX_Unmarshal

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

type GetNetStatusResponse

type GetNetStatusResponse struct {
	Status bool `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
}

func (*GetNetStatusResponse) Descriptor

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

func (*GetNetStatusResponse) Equal

func (this *GetNetStatusResponse) Equal(that interface{}) bool

func (*GetNetStatusResponse) GetStatus

func (m *GetNetStatusResponse) GetStatus() bool

func (*GetNetStatusResponse) GoString

func (this *GetNetStatusResponse) GoString() string

func (*GetNetStatusResponse) Marshal

func (m *GetNetStatusResponse) Marshal() (dAtA []byte, err error)

func (*GetNetStatusResponse) MarshalTo

func (m *GetNetStatusResponse) MarshalTo(dAtA []byte) (int, error)

func (*GetNetStatusResponse) MarshalToSizedBuffer

func (m *GetNetStatusResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetNetStatusResponse) ProtoMessage

func (*GetNetStatusResponse) ProtoMessage()

func (*GetNetStatusResponse) Reset

func (m *GetNetStatusResponse) Reset()

func (*GetNetStatusResponse) Size

func (m *GetNetStatusResponse) Size() (n int)

func (*GetNetStatusResponse) String

func (this *GetNetStatusResponse) String() string

func (*GetNetStatusResponse) Unmarshal

func (m *GetNetStatusResponse) Unmarshal(dAtA []byte) error

func (*GetNetStatusResponse) XXX_DiscardUnknown

func (m *GetNetStatusResponse) XXX_DiscardUnknown()

func (*GetNetStatusResponse) XXX_Marshal

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

func (*GetNetStatusResponse) XXX_Merge

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

func (*GetNetStatusResponse) XXX_Size

func (m *GetNetStatusResponse) XXX_Size() int

func (*GetNetStatusResponse) XXX_Unmarshal

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

type GetServicesRequest

type GetServicesRequest struct {
}

func (*GetServicesRequest) Descriptor

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

func (*GetServicesRequest) Equal

func (this *GetServicesRequest) Equal(that interface{}) bool

func (*GetServicesRequest) GoString

func (this *GetServicesRequest) GoString() string

func (*GetServicesRequest) Marshal

func (m *GetServicesRequest) Marshal() (dAtA []byte, err error)

func (*GetServicesRequest) MarshalTo

func (m *GetServicesRequest) MarshalTo(dAtA []byte) (int, error)

func (*GetServicesRequest) MarshalToSizedBuffer

func (m *GetServicesRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetServicesRequest) ProtoMessage

func (*GetServicesRequest) ProtoMessage()

func (*GetServicesRequest) Reset

func (m *GetServicesRequest) Reset()

func (*GetServicesRequest) Size

func (m *GetServicesRequest) Size() (n int)

func (*GetServicesRequest) String

func (this *GetServicesRequest) String() string

func (*GetServicesRequest) Unmarshal

func (m *GetServicesRequest) Unmarshal(dAtA []byte) error

func (*GetServicesRequest) XXX_DiscardUnknown

func (m *GetServicesRequest) XXX_DiscardUnknown()

func (*GetServicesRequest) XXX_Marshal

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

func (*GetServicesRequest) XXX_Merge

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

func (*GetServicesRequest) XXX_Size

func (m *GetServicesRequest) XXX_Size() int

func (*GetServicesRequest) XXX_Unmarshal

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

type GetServicesResponse

type GetServicesResponse struct {
	Services []BetService `protobuf:"bytes,1,rep,name=services,proto3" json:"services"`
}

func (*GetServicesResponse) Descriptor

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

func (*GetServicesResponse) Equal

func (this *GetServicesResponse) Equal(that interface{}) bool

func (*GetServicesResponse) GetServices

func (m *GetServicesResponse) GetServices() []BetService

func (*GetServicesResponse) GoString

func (this *GetServicesResponse) GoString() string

func (*GetServicesResponse) Marshal

func (m *GetServicesResponse) Marshal() (dAtA []byte, err error)

func (*GetServicesResponse) MarshalTo

func (m *GetServicesResponse) MarshalTo(dAtA []byte) (int, error)

func (*GetServicesResponse) MarshalToSizedBuffer

func (m *GetServicesResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetServicesResponse) ProtoMessage

func (*GetServicesResponse) ProtoMessage()

func (*GetServicesResponse) Reset

func (m *GetServicesResponse) Reset()

func (*GetServicesResponse) Size

func (m *GetServicesResponse) Size() (n int)

func (*GetServicesResponse) String

func (this *GetServicesResponse) String() string

func (*GetServicesResponse) Unmarshal

func (m *GetServicesResponse) Unmarshal(dAtA []byte) error

func (*GetServicesResponse) XXX_DiscardUnknown

func (m *GetServicesResponse) XXX_DiscardUnknown()

func (*GetServicesResponse) XXX_Marshal

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

func (*GetServicesResponse) XXX_Merge

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

func (*GetServicesResponse) XXX_Size

func (m *GetServicesResponse) XXX_Size() int

func (*GetServicesResponse) XXX_Unmarshal

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

type PingRequest

type PingRequest struct {
}

func (*PingRequest) Descriptor

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

func (*PingRequest) Equal

func (this *PingRequest) Equal(that interface{}) bool

func (*PingRequest) GoString

func (this *PingRequest) GoString() string

func (*PingRequest) Marshal

func (m *PingRequest) Marshal() (dAtA []byte, err error)

func (*PingRequest) MarshalTo

func (m *PingRequest) MarshalTo(dAtA []byte) (int, error)

func (*PingRequest) MarshalToSizedBuffer

func (m *PingRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PingRequest) ProtoMessage

func (*PingRequest) ProtoMessage()

func (*PingRequest) Reset

func (m *PingRequest) Reset()

func (*PingRequest) Size

func (m *PingRequest) Size() (n int)

func (*PingRequest) String

func (this *PingRequest) String() string

func (*PingRequest) Unmarshal

func (m *PingRequest) Unmarshal(dAtA []byte) error

func (*PingRequest) XXX_DiscardUnknown

func (m *PingRequest) XXX_DiscardUnknown()

func (*PingRequest) XXX_Marshal

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

func (*PingRequest) XXX_Merge

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

func (*PingRequest) XXX_Size

func (m *PingRequest) XXX_Size() int

func (*PingRequest) XXX_Unmarshal

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

type PingResponse

type PingResponse struct {
}

func (*PingResponse) Descriptor

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

func (*PingResponse) Equal

func (this *PingResponse) Equal(that interface{}) bool

func (*PingResponse) GoString

func (this *PingResponse) GoString() string

func (*PingResponse) Marshal

func (m *PingResponse) Marshal() (dAtA []byte, err error)

func (*PingResponse) MarshalTo

func (m *PingResponse) MarshalTo(dAtA []byte) (int, error)

func (*PingResponse) MarshalToSizedBuffer

func (m *PingResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PingResponse) ProtoMessage

func (*PingResponse) ProtoMessage()

func (*PingResponse) Reset

func (m *PingResponse) Reset()

func (*PingResponse) Size

func (m *PingResponse) Size() (n int)

func (*PingResponse) String

func (this *PingResponse) String() string

func (*PingResponse) Unmarshal

func (m *PingResponse) Unmarshal(dAtA []byte) error

func (*PingResponse) XXX_DiscardUnknown

func (m *PingResponse) XXX_DiscardUnknown()

func (*PingResponse) XXX_Marshal

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

func (*PingResponse) XXX_Merge

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

func (*PingResponse) XXX_Size

func (m *PingResponse) XXX_Size() int

func (*PingResponse) XXX_Unmarshal

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

type ServiceConfig

type ServiceConfig struct {
	GrpcPort int64 `protobuf:"varint,1,opt,name=grpc_port,json=grpcPort,proto3" json:"grpc_port,omitempty"`
}

func (*ServiceConfig) Descriptor

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

func (*ServiceConfig) Equal

func (this *ServiceConfig) Equal(that interface{}) bool

func (*ServiceConfig) GetGrpcPort

func (m *ServiceConfig) GetGrpcPort() int64

func (*ServiceConfig) GoString

func (this *ServiceConfig) GoString() string

func (*ServiceConfig) Marshal

func (m *ServiceConfig) Marshal() (dAtA []byte, err error)

func (*ServiceConfig) MarshalTo

func (m *ServiceConfig) MarshalTo(dAtA []byte) (int, error)

func (*ServiceConfig) MarshalToSizedBuffer

func (m *ServiceConfig) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ServiceConfig) ProtoMessage

func (*ServiceConfig) ProtoMessage()

func (*ServiceConfig) Reset

func (m *ServiceConfig) Reset()

func (*ServiceConfig) Size

func (m *ServiceConfig) Size() (n int)

func (*ServiceConfig) String

func (this *ServiceConfig) String() string

func (*ServiceConfig) Unmarshal

func (m *ServiceConfig) Unmarshal(dAtA []byte) error

func (*ServiceConfig) XXX_DiscardUnknown

func (m *ServiceConfig) XXX_DiscardUnknown()

func (*ServiceConfig) XXX_Marshal

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

func (*ServiceConfig) XXX_Merge

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

func (*ServiceConfig) XXX_Size

func (m *ServiceConfig) XXX_Size() int

func (*ServiceConfig) XXX_Unmarshal

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

type UnimplementedConfServer

type UnimplementedConfServer struct {
}

UnimplementedConfServer can be embedded to have forward compatible implementations.

func (*UnimplementedConfServer) GetAccount

func (*UnimplementedConfServer) GetConfig

func (*UnimplementedConfServer) GetCurrency

func (*UnimplementedConfServer) GetNetStatus

func (*UnimplementedConfServer) GetServices

func (*UnimplementedConfServer) Ping

Jump to

Keyboard shortcuts

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