proto

package
v0.2.0 Latest Latest
Warning

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

Go to latest
Published: May 1, 2020 License: MIT Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

Functions

func RegisterAuthLoginServiceServer added in v0.1.0

func RegisterAuthLoginServiceServer(s *grpc.Server, srv AuthLoginServiceServer)

func RegisterBeginTransactionWHServiceServer added in v0.1.7

func RegisterBeginTransactionWHServiceServer(s *grpc.Server, srv BeginTransactionWHServiceServer)

func RegisterCheckOrgSignUpServiceServer added in v0.0.7

func RegisterCheckOrgSignUpServiceServer(s *grpc.Server, srv CheckOrgSignUpServiceServer)

func RegisterCheckUserSignUpServiceServer

func RegisterCheckUserSignUpServiceServer(s *grpc.Server, srv CheckUserSignUpServiceServer)

func RegisterConfirmTransferServiceServer added in v0.1.9

func RegisterConfirmTransferServiceServer(s *grpc.Server, srv ConfirmTransferServiceServer)

func RegisterOrgSignUpServiceServer added in v0.0.4

func RegisterOrgSignUpServiceServer(s *grpc.Server, srv OrgSignUpServiceServer)

func RegisterSearchOrgNameServiceServer added in v0.2.0

func RegisterSearchOrgNameServiceServer(s *grpc.Server, srv SearchOrgNameServiceServer)

func RegisterUserSignUpServiceServer

func RegisterUserSignUpServiceServer(s *grpc.Server, srv UserSignUpServiceServer)

Types

type AuthLoginServiceClient added in v0.1.0

type AuthLoginServiceClient interface {
	AuthLogin(ctx context.Context, in *Login, opts ...grpc.CallOption) (*GlobalSuccessReply, error)
}

AuthLoginServiceClient is the client API for AuthLoginService service.

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

func NewAuthLoginServiceClient added in v0.1.0

func NewAuthLoginServiceClient(cc grpc.ClientConnInterface) AuthLoginServiceClient

type AuthLoginServiceServer added in v0.1.0

type AuthLoginServiceServer interface {
	AuthLogin(context.Context, *Login) (*GlobalSuccessReply, error)
}

AuthLoginServiceServer is the server API for AuthLoginService service.

type BeginTransactionWHServiceClient added in v0.1.7

type BeginTransactionWHServiceClient interface {
	BeginTransactionWH(ctx context.Context, in *TransactionItemID, opts ...grpc.CallOption) (*GlobalSuccessReply, error)
}

BeginTransactionWHServiceClient is the client API for BeginTransactionWHService service.

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

func NewBeginTransactionWHServiceClient added in v0.1.7

func NewBeginTransactionWHServiceClient(cc grpc.ClientConnInterface) BeginTransactionWHServiceClient

type BeginTransactionWHServiceServer added in v0.1.7

type BeginTransactionWHServiceServer interface {
	BeginTransactionWH(context.Context, *TransactionItemID) (*GlobalSuccessReply, error)
}

BeginTransactionWHServiceServer is the server API for BeginTransactionWHService service.

type CheckOrgSignUpServiceClient added in v0.0.7

type CheckOrgSignUpServiceClient interface {
	CheckOrgSignUp(ctx context.Context, in *OrgSignUp, opts ...grpc.CallOption) (*GlobalSuccessReply, error)
}

CheckOrgSignUpServiceClient is the client API for CheckOrgSignUpService service.

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

func NewCheckOrgSignUpServiceClient added in v0.0.7

func NewCheckOrgSignUpServiceClient(cc grpc.ClientConnInterface) CheckOrgSignUpServiceClient

type CheckOrgSignUpServiceServer added in v0.0.7

type CheckOrgSignUpServiceServer interface {
	CheckOrgSignUp(context.Context, *OrgSignUp) (*GlobalSuccessReply, error)
}

CheckOrgSignUpServiceServer is the server API for CheckOrgSignUpService service.

type CheckUserSignUpServiceClient

type CheckUserSignUpServiceClient interface {
	CheckUserSignUp(ctx context.Context, in *UserSignUp, opts ...grpc.CallOption) (*GlobalSuccessReply, error)
}

CheckUserSignUpServiceClient is the client API for CheckUserSignUpService service.

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

type CheckUserSignUpServiceServer

type CheckUserSignUpServiceServer interface {
	CheckUserSignUp(context.Context, *UserSignUp) (*GlobalSuccessReply, error)
}

CheckUserSignUpServiceServer is the server API for CheckUserSignUpService service.

type ConfirmTransferServiceClient added in v0.1.9

type ConfirmTransferServiceClient interface {
	ConfirmTransfer(ctx context.Context, in *StripeChargeID, opts ...grpc.CallOption) (*GlobalSuccessReply, error)
}

ConfirmTransferServiceClient is the client API for ConfirmTransferService service.

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

func NewConfirmTransferServiceClient added in v0.1.9

func NewConfirmTransferServiceClient(cc grpc.ClientConnInterface) ConfirmTransferServiceClient

type ConfirmTransferServiceServer added in v0.1.9

type ConfirmTransferServiceServer interface {
	ConfirmTransfer(context.Context, *StripeChargeID) (*GlobalSuccessReply, error)
}

ConfirmTransferServiceServer is the server API for ConfirmTransferService service.

type GlobalSuccessReply

type GlobalSuccessReply struct {
	Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	// contains filtered or unexported fields
}

func (*GlobalSuccessReply) Descriptor deprecated

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

Deprecated: Use GlobalSuccessReply.ProtoReflect.Descriptor instead.

func (*GlobalSuccessReply) GetSuccess

func (x *GlobalSuccessReply) GetSuccess() bool

func (*GlobalSuccessReply) ProtoMessage

func (*GlobalSuccessReply) ProtoMessage()

func (*GlobalSuccessReply) ProtoReflect

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

func (*GlobalSuccessReply) Reset

func (x *GlobalSuccessReply) Reset()

func (*GlobalSuccessReply) String

func (x *GlobalSuccessReply) String() string

type Login added in v0.1.0

type Login struct {
	Email     string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
	Password  string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
	Usertoken string `protobuf:"bytes,3,opt,name=usertoken,proto3" json:"usertoken,omitempty"`
	Table     string `protobuf:"bytes,4,opt,name=table,proto3" json:"table,omitempty"`
	// contains filtered or unexported fields
}

func (*Login) Descriptor deprecated added in v0.1.0

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

Deprecated: Use Login.ProtoReflect.Descriptor instead.

func (*Login) GetEmail added in v0.1.0

func (x *Login) GetEmail() string

func (*Login) GetPassword added in v0.1.0

func (x *Login) GetPassword() string

func (*Login) GetTable added in v0.1.0

func (x *Login) GetTable() string

func (*Login) GetUsertoken added in v0.1.0

func (x *Login) GetUsertoken() string

func (*Login) ProtoMessage added in v0.1.0

func (*Login) ProtoMessage()

func (*Login) ProtoReflect added in v0.1.0

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

func (*Login) Reset added in v0.1.0

func (x *Login) Reset()

func (*Login) String added in v0.1.0

func (x *Login) String() string

type OrgName added in v0.2.0

type OrgName struct {
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*OrgName) Descriptor deprecated added in v0.2.0

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

Deprecated: Use OrgName.ProtoReflect.Descriptor instead.

func (*OrgName) GetName added in v0.2.0

func (x *OrgName) GetName() string

func (*OrgName) ProtoMessage added in v0.2.0

func (*OrgName) ProtoMessage()

func (*OrgName) ProtoReflect added in v0.2.0

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

func (*OrgName) Reset added in v0.2.0

func (x *OrgName) Reset()

func (*OrgName) String added in v0.2.0

func (x *OrgName) String() string

type OrgNameReply added in v0.2.0

type OrgNameReply struct {
	Names []string `protobuf:"bytes,1,rep,name=names,proto3" json:"names,omitempty"`
	// contains filtered or unexported fields
}

func (*OrgNameReply) Descriptor deprecated added in v0.2.0

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

Deprecated: Use OrgNameReply.ProtoReflect.Descriptor instead.

func (*OrgNameReply) GetNames added in v0.2.0

func (x *OrgNameReply) GetNames() []string

func (*OrgNameReply) ProtoMessage added in v0.2.0

func (*OrgNameReply) ProtoMessage()

func (*OrgNameReply) ProtoReflect added in v0.2.0

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

func (*OrgNameReply) Reset added in v0.2.0

func (x *OrgNameReply) Reset()

func (*OrgNameReply) String added in v0.2.0

func (x *OrgNameReply) String() string

type OrgSignUp added in v0.0.4

type OrgSignUp struct {
	Name             string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Email            string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
	Password         string `protobuf:"bytes,3,opt,name=password,proto3" json:"password,omitempty"`
	Ein              int32  `protobuf:"varint,4,opt,name=ein,proto3" json:"ein,omitempty"`
	Orgtoken         string `protobuf:"bytes,5,opt,name=orgtoken,proto3" json:"orgtoken,omitempty"`
	Plaidpublictoken string `protobuf:"bytes,6,opt,name=plaidpublictoken,proto3" json:"plaidpublictoken,omitempty"`
	Plaidaccountid   string `protobuf:"bytes,7,opt,name=plaidaccountid,proto3" json:"plaidaccountid,omitempty"`
	Key              int32  `protobuf:"varint,8,opt,name=key,proto3" json:"key,omitempty"`
	// contains filtered or unexported fields
}

func (*OrgSignUp) Descriptor deprecated added in v0.0.4

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

Deprecated: Use OrgSignUp.ProtoReflect.Descriptor instead.

func (*OrgSignUp) GetEin added in v0.0.4

func (x *OrgSignUp) GetEin() int32

func (*OrgSignUp) GetEmail added in v0.0.4

func (x *OrgSignUp) GetEmail() string

func (*OrgSignUp) GetKey added in v0.0.4

func (x *OrgSignUp) GetKey() int32

func (*OrgSignUp) GetName added in v0.0.4

func (x *OrgSignUp) GetName() string

func (*OrgSignUp) GetOrgtoken added in v0.0.4

func (x *OrgSignUp) GetOrgtoken() string

func (*OrgSignUp) GetPassword added in v0.0.4

func (x *OrgSignUp) GetPassword() string

func (*OrgSignUp) GetPlaidaccountid added in v0.0.4

func (x *OrgSignUp) GetPlaidaccountid() string

func (*OrgSignUp) GetPlaidpublictoken added in v0.0.4

func (x *OrgSignUp) GetPlaidpublictoken() string

func (*OrgSignUp) ProtoMessage added in v0.0.4

func (*OrgSignUp) ProtoMessage()

func (*OrgSignUp) ProtoReflect added in v0.0.4

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

func (*OrgSignUp) Reset added in v0.0.4

func (x *OrgSignUp) Reset()

func (*OrgSignUp) String added in v0.0.4

func (x *OrgSignUp) String() string

type OrgSignUpServiceClient added in v0.0.4

type OrgSignUpServiceClient interface {
	SendOrgSignUp(ctx context.Context, in *OrgSignUp, opts ...grpc.CallOption) (*GlobalSuccessReply, error)
}

OrgSignUpServiceClient is the client API for OrgSignUpService service.

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

func NewOrgSignUpServiceClient added in v0.0.4

func NewOrgSignUpServiceClient(cc grpc.ClientConnInterface) OrgSignUpServiceClient

type OrgSignUpServiceServer added in v0.0.4

type OrgSignUpServiceServer interface {
	SendOrgSignUp(context.Context, *OrgSignUp) (*GlobalSuccessReply, error)
}

OrgSignUpServiceServer is the server API for OrgSignUpService service.

type SearchOrgNameServiceClient added in v0.2.0

type SearchOrgNameServiceClient interface {
	SearchOrgName(ctx context.Context, in *OrgName, opts ...grpc.CallOption) (*OrgNameReply, error)
}

SearchOrgNameServiceClient is the client API for SearchOrgNameService service.

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

func NewSearchOrgNameServiceClient added in v0.2.0

func NewSearchOrgNameServiceClient(cc grpc.ClientConnInterface) SearchOrgNameServiceClient

type SearchOrgNameServiceServer added in v0.2.0

type SearchOrgNameServiceServer interface {
	SearchOrgName(context.Context, *OrgName) (*OrgNameReply, error)
}

SearchOrgNameServiceServer is the server API for SearchOrgNameService service.

type StripeChargeID added in v0.1.9

type StripeChargeID struct {
	Chargeid string `protobuf:"bytes,1,opt,name=chargeid,proto3" json:"chargeid,omitempty"`
	// contains filtered or unexported fields
}

func (*StripeChargeID) Descriptor deprecated added in v0.1.9

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

Deprecated: Use StripeChargeID.ProtoReflect.Descriptor instead.

func (*StripeChargeID) GetChargeid added in v0.1.9

func (x *StripeChargeID) GetChargeid() string

func (*StripeChargeID) ProtoMessage added in v0.1.9

func (*StripeChargeID) ProtoMessage()

func (*StripeChargeID) ProtoReflect added in v0.1.9

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

func (*StripeChargeID) Reset added in v0.1.9

func (x *StripeChargeID) Reset()

func (*StripeChargeID) String added in v0.1.9

func (x *StripeChargeID) String() string

type TransactionItemID added in v0.1.7

type TransactionItemID struct {
	Itemid string `protobuf:"bytes,1,opt,name=itemid,proto3" json:"itemid,omitempty"`
	// contains filtered or unexported fields
}

func (*TransactionItemID) Descriptor deprecated added in v0.1.7

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

Deprecated: Use TransactionItemID.ProtoReflect.Descriptor instead.

func (*TransactionItemID) GetItemid added in v0.1.7

func (x *TransactionItemID) GetItemid() string

func (*TransactionItemID) ProtoMessage added in v0.1.7

func (*TransactionItemID) ProtoMessage()

func (*TransactionItemID) ProtoReflect added in v0.1.7

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

func (*TransactionItemID) Reset added in v0.1.7

func (x *TransactionItemID) Reset()

func (*TransactionItemID) String added in v0.1.7

func (x *TransactionItemID) String() string

type UnimplementedAuthLoginServiceServer added in v0.1.0

type UnimplementedAuthLoginServiceServer struct {
}

UnimplementedAuthLoginServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedAuthLoginServiceServer) AuthLogin added in v0.1.0

type UnimplementedBeginTransactionWHServiceServer added in v0.1.7

type UnimplementedBeginTransactionWHServiceServer struct {
}

UnimplementedBeginTransactionWHServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedBeginTransactionWHServiceServer) BeginTransactionWH added in v0.1.7

type UnimplementedCheckOrgSignUpServiceServer added in v0.0.7

type UnimplementedCheckOrgSignUpServiceServer struct {
}

UnimplementedCheckOrgSignUpServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedCheckOrgSignUpServiceServer) CheckOrgSignUp added in v0.0.7

type UnimplementedCheckUserSignUpServiceServer

type UnimplementedCheckUserSignUpServiceServer struct {
}

UnimplementedCheckUserSignUpServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedCheckUserSignUpServiceServer) CheckUserSignUp

type UnimplementedConfirmTransferServiceServer added in v0.1.9

type UnimplementedConfirmTransferServiceServer struct {
}

UnimplementedConfirmTransferServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedConfirmTransferServiceServer) ConfirmTransfer added in v0.1.9

type UnimplementedOrgSignUpServiceServer added in v0.0.4

type UnimplementedOrgSignUpServiceServer struct {
}

UnimplementedOrgSignUpServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedOrgSignUpServiceServer) SendOrgSignUp added in v0.0.4

type UnimplementedSearchOrgNameServiceServer added in v0.2.0

type UnimplementedSearchOrgNameServiceServer struct {
}

UnimplementedSearchOrgNameServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedSearchOrgNameServiceServer) SearchOrgName added in v0.2.0

type UnimplementedUserSignUpServiceServer

type UnimplementedUserSignUpServiceServer struct {
}

UnimplementedUserSignUpServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedUserSignUpServiceServer) SendUserSignUp

type UserSignUp

type UserSignUp struct {
	Email            string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
	Password         string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
	Dob              int64  `protobuf:"varint,3,opt,name=dob,proto3" json:"dob,omitempty"`
	Usertoken        string `protobuf:"bytes,4,opt,name=usertoken,proto3" json:"usertoken,omitempty"`
	Plaidpublictoken string `protobuf:"bytes,5,opt,name=plaidpublictoken,proto3" json:"plaidpublictoken,omitempty"`
	Plaidaccountid   string `protobuf:"bytes,6,opt,name=plaidaccountid,proto3" json:"plaidaccountid,omitempty"`
	Key              int32  `protobuf:"varint,8,opt,name=key,proto3" json:"key,omitempty"`
	// contains filtered or unexported fields
}

func (*UserSignUp) Descriptor deprecated

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

Deprecated: Use UserSignUp.ProtoReflect.Descriptor instead.

func (*UserSignUp) GetDob

func (x *UserSignUp) GetDob() int64

func (*UserSignUp) GetEmail

func (x *UserSignUp) GetEmail() string

func (*UserSignUp) GetKey

func (x *UserSignUp) GetKey() int32

func (*UserSignUp) GetPassword

func (x *UserSignUp) GetPassword() string

func (*UserSignUp) GetPlaidaccountid

func (x *UserSignUp) GetPlaidaccountid() string

func (*UserSignUp) GetPlaidpublictoken

func (x *UserSignUp) GetPlaidpublictoken() string

func (*UserSignUp) GetUsertoken

func (x *UserSignUp) GetUsertoken() string

func (*UserSignUp) ProtoMessage

func (*UserSignUp) ProtoMessage()

func (*UserSignUp) ProtoReflect

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

func (*UserSignUp) Reset

func (x *UserSignUp) Reset()

func (*UserSignUp) String

func (x *UserSignUp) String() string

type UserSignUpServiceClient

type UserSignUpServiceClient interface {
	SendUserSignUp(ctx context.Context, in *UserSignUp, opts ...grpc.CallOption) (*GlobalSuccessReply, error)
}

UserSignUpServiceClient is the client API for UserSignUpService service.

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

type UserSignUpServiceServer

type UserSignUpServiceServer interface {
	SendUserSignUp(context.Context, *UserSignUp) (*GlobalSuccessReply, error)
}

UserSignUpServiceServer is the server API for UserSignUpService service.

Jump to

Keyboard shortcuts

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