pb

package
v2.1.4 Latest Latest
Warning

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

Go to latest
Published: Nov 18, 2020 License: MIT Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var KeyType_name = map[int32]string{
	0: "KEY_TYPE_UNSPECIFIED",
	1: "KEY_TYPE_ACCOUNT",
	2: "KEY_TYPE_USER",
}
View Source
var KeyType_value = map[string]int32{
	"KEY_TYPE_UNSPECIFIED": 0,
	"KEY_TYPE_ACCOUNT":     1,
	"KEY_TYPE_USER":        2,
}

Functions

func RegisterAPIServiceServer

func RegisterAPIServiceServer(s *grpc.Server, srv APIServiceServer)

Types

type APIServiceClient

type APIServiceClient interface {
	BuildInfo(ctx context.Context, in *BuildInfoRequest, opts ...grpc.CallOption) (*BuildInfoResponse, error)
	Signup(ctx context.Context, in *SignupRequest, opts ...grpc.CallOption) (*SignupResponse, error)
	Signin(ctx context.Context, in *SigninRequest, opts ...grpc.CallOption) (*SigninResponse, error)
	Signout(ctx context.Context, in *SignoutRequest, opts ...grpc.CallOption) (*SignoutResponse, error)
	GetSessionInfo(ctx context.Context, in *GetSessionInfoRequest, opts ...grpc.CallOption) (*GetSessionInfoResponse, error)
	GetIdentity(ctx context.Context, in *GetIdentityRequest, opts ...grpc.CallOption) (*GetIdentityResponse, error)
	CreateKey(ctx context.Context, in *CreateKeyRequest, opts ...grpc.CallOption) (*CreateKeyResponse, error)
	ListKeys(ctx context.Context, in *ListKeysRequest, opts ...grpc.CallOption) (*ListKeysResponse, error)
	InvalidateKey(ctx context.Context, in *InvalidateKeyRequest, opts ...grpc.CallOption) (*InvalidateKeyResponse, error)
	CreateOrg(ctx context.Context, in *CreateOrgRequest, opts ...grpc.CallOption) (*CreateOrgResponse, error)
	GetOrg(ctx context.Context, in *GetOrgRequest, opts ...grpc.CallOption) (*GetOrgResponse, error)
	ListOrgs(ctx context.Context, in *ListOrgsRequest, opts ...grpc.CallOption) (*ListOrgsResponse, error)
	RemoveOrg(ctx context.Context, in *RemoveOrgRequest, opts ...grpc.CallOption) (*RemoveOrgResponse, error)
	InviteToOrg(ctx context.Context, in *InviteToOrgRequest, opts ...grpc.CallOption) (*InviteToOrgResponse, error)
	LeaveOrg(ctx context.Context, in *LeaveOrgRequest, opts ...grpc.CallOption) (*LeaveOrgResponse, error)
	SetupBilling(ctx context.Context, in *SetupBillingRequest, opts ...grpc.CallOption) (*SetupBillingResponse, error)
	GetBillingSession(ctx context.Context, in *GetBillingSessionRequest, opts ...grpc.CallOption) (*GetBillingSessionResponse, error)
	ListBillingUsers(ctx context.Context, in *ListBillingUsersRequest, opts ...grpc.CallOption) (*ListBillingUsersResponse, error)
	IsUsernameAvailable(ctx context.Context, in *IsUsernameAvailableRequest, opts ...grpc.CallOption) (*IsUsernameAvailableResponse, error)
	IsOrgNameAvailable(ctx context.Context, in *IsOrgNameAvailableRequest, opts ...grpc.CallOption) (*IsOrgNameAvailableResponse, error)
	DestroyAccount(ctx context.Context, in *DestroyAccountRequest, opts ...grpc.CallOption) (*DestroyAccountResponse, error)
}

APIServiceClient is the client API for APIService service.

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

func NewAPIServiceClient

func NewAPIServiceClient(cc *grpc.ClientConn) APIServiceClient

type APIServiceServer

type APIServiceServer interface {
	BuildInfo(context.Context, *BuildInfoRequest) (*BuildInfoResponse, error)
	Signup(context.Context, *SignupRequest) (*SignupResponse, error)
	Signin(context.Context, *SigninRequest) (*SigninResponse, error)
	Signout(context.Context, *SignoutRequest) (*SignoutResponse, error)
	GetSessionInfo(context.Context, *GetSessionInfoRequest) (*GetSessionInfoResponse, error)
	GetIdentity(context.Context, *GetIdentityRequest) (*GetIdentityResponse, error)
	CreateKey(context.Context, *CreateKeyRequest) (*CreateKeyResponse, error)
	ListKeys(context.Context, *ListKeysRequest) (*ListKeysResponse, error)
	InvalidateKey(context.Context, *InvalidateKeyRequest) (*InvalidateKeyResponse, error)
	CreateOrg(context.Context, *CreateOrgRequest) (*CreateOrgResponse, error)
	GetOrg(context.Context, *GetOrgRequest) (*GetOrgResponse, error)
	ListOrgs(context.Context, *ListOrgsRequest) (*ListOrgsResponse, error)
	RemoveOrg(context.Context, *RemoveOrgRequest) (*RemoveOrgResponse, error)
	InviteToOrg(context.Context, *InviteToOrgRequest) (*InviteToOrgResponse, error)
	LeaveOrg(context.Context, *LeaveOrgRequest) (*LeaveOrgResponse, error)
	SetupBilling(context.Context, *SetupBillingRequest) (*SetupBillingResponse, error)
	GetBillingSession(context.Context, *GetBillingSessionRequest) (*GetBillingSessionResponse, error)
	ListBillingUsers(context.Context, *ListBillingUsersRequest) (*ListBillingUsersResponse, error)
	IsUsernameAvailable(context.Context, *IsUsernameAvailableRequest) (*IsUsernameAvailableResponse, error)
	IsOrgNameAvailable(context.Context, *IsOrgNameAvailableRequest) (*IsOrgNameAvailableResponse, error)
	DestroyAccount(context.Context, *DestroyAccountRequest) (*DestroyAccountResponse, error)
}

APIServiceServer is the server API for APIService service.

type BuildInfoRequest

type BuildInfoRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BuildInfoRequest) Descriptor

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

func (*BuildInfoRequest) ProtoMessage

func (*BuildInfoRequest) ProtoMessage()

func (*BuildInfoRequest) Reset

func (m *BuildInfoRequest) Reset()

func (*BuildInfoRequest) String

func (m *BuildInfoRequest) String() string

func (*BuildInfoRequest) XXX_DiscardUnknown

func (m *BuildInfoRequest) XXX_DiscardUnknown()

func (*BuildInfoRequest) XXX_Marshal

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

func (*BuildInfoRequest) XXX_Merge

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

func (*BuildInfoRequest) XXX_Size

func (m *BuildInfoRequest) XXX_Size() int

func (*BuildInfoRequest) XXX_Unmarshal

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

type BuildInfoResponse

type BuildInfoResponse struct {
	GitCommit            string   `protobuf:"bytes,1,opt,name=git_commit,json=gitCommit,proto3" json:"git_commit,omitempty"`
	GitBranch            string   `protobuf:"bytes,2,opt,name=git_branch,json=gitBranch,proto3" json:"git_branch,omitempty"`
	GitState             string   `protobuf:"bytes,3,opt,name=git_state,json=gitState,proto3" json:"git_state,omitempty"`
	GitSummary           string   `protobuf:"bytes,4,opt,name=git_summary,json=gitSummary,proto3" json:"git_summary,omitempty"`
	BuildDate            string   `protobuf:"bytes,5,opt,name=build_date,json=buildDate,proto3" json:"build_date,omitempty"`
	Version              string   `protobuf:"bytes,6,opt,name=version,proto3" json:"version,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BuildInfoResponse) Descriptor

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

func (*BuildInfoResponse) GetBuildDate

func (m *BuildInfoResponse) GetBuildDate() string

func (*BuildInfoResponse) GetGitBranch

func (m *BuildInfoResponse) GetGitBranch() string

func (*BuildInfoResponse) GetGitCommit

func (m *BuildInfoResponse) GetGitCommit() string

func (*BuildInfoResponse) GetGitState

func (m *BuildInfoResponse) GetGitState() string

func (*BuildInfoResponse) GetGitSummary

func (m *BuildInfoResponse) GetGitSummary() string

func (*BuildInfoResponse) GetVersion

func (m *BuildInfoResponse) GetVersion() string

func (*BuildInfoResponse) ProtoMessage

func (*BuildInfoResponse) ProtoMessage()

func (*BuildInfoResponse) Reset

func (m *BuildInfoResponse) Reset()

func (*BuildInfoResponse) String

func (m *BuildInfoResponse) String() string

func (*BuildInfoResponse) XXX_DiscardUnknown

func (m *BuildInfoResponse) XXX_DiscardUnknown()

func (*BuildInfoResponse) XXX_Marshal

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

func (*BuildInfoResponse) XXX_Merge

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

func (*BuildInfoResponse) XXX_Size

func (m *BuildInfoResponse) XXX_Size() int

func (*BuildInfoResponse) XXX_Unmarshal

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

type CreateKeyRequest

type CreateKeyRequest struct {
	Type                 KeyType  `protobuf:"varint,1,opt,name=type,proto3,enum=api.hubd.pb.KeyType" json:"type,omitempty"`
	Secure               bool     `protobuf:"varint,2,opt,name=secure,proto3" json:"secure,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateKeyRequest) Descriptor

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

func (*CreateKeyRequest) GetSecure

func (m *CreateKeyRequest) GetSecure() bool

func (*CreateKeyRequest) GetType

func (m *CreateKeyRequest) GetType() KeyType

func (*CreateKeyRequest) ProtoMessage

func (*CreateKeyRequest) ProtoMessage()

func (*CreateKeyRequest) Reset

func (m *CreateKeyRequest) Reset()

func (*CreateKeyRequest) String

func (m *CreateKeyRequest) String() string

func (*CreateKeyRequest) XXX_DiscardUnknown

func (m *CreateKeyRequest) XXX_DiscardUnknown()

func (*CreateKeyRequest) XXX_Marshal

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

func (*CreateKeyRequest) XXX_Merge

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

func (*CreateKeyRequest) XXX_Size

func (m *CreateKeyRequest) XXX_Size() int

func (*CreateKeyRequest) XXX_Unmarshal

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

type CreateKeyResponse

type CreateKeyResponse struct {
	KeyInfo              *KeyInfo `protobuf:"bytes,1,opt,name=key_info,json=keyInfo,proto3" json:"key_info,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateKeyResponse) Descriptor

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

func (*CreateKeyResponse) GetKeyInfo

func (m *CreateKeyResponse) GetKeyInfo() *KeyInfo

func (*CreateKeyResponse) ProtoMessage

func (*CreateKeyResponse) ProtoMessage()

func (*CreateKeyResponse) Reset

func (m *CreateKeyResponse) Reset()

func (*CreateKeyResponse) String

func (m *CreateKeyResponse) String() string

func (*CreateKeyResponse) XXX_DiscardUnknown

func (m *CreateKeyResponse) XXX_DiscardUnknown()

func (*CreateKeyResponse) XXX_Marshal

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

func (*CreateKeyResponse) XXX_Merge

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

func (*CreateKeyResponse) XXX_Size

func (m *CreateKeyResponse) XXX_Size() int

func (*CreateKeyResponse) XXX_Unmarshal

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

type CreateOrgRequest

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

func (*CreateOrgRequest) Descriptor

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

func (*CreateOrgRequest) GetName

func (m *CreateOrgRequest) GetName() string

func (*CreateOrgRequest) ProtoMessage

func (*CreateOrgRequest) ProtoMessage()

func (*CreateOrgRequest) Reset

func (m *CreateOrgRequest) Reset()

func (*CreateOrgRequest) String

func (m *CreateOrgRequest) String() string

func (*CreateOrgRequest) XXX_DiscardUnknown

func (m *CreateOrgRequest) XXX_DiscardUnknown()

func (*CreateOrgRequest) XXX_Marshal

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

func (*CreateOrgRequest) XXX_Merge

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

func (*CreateOrgRequest) XXX_Size

func (m *CreateOrgRequest) XXX_Size() int

func (*CreateOrgRequest) XXX_Unmarshal

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

type CreateOrgResponse

type CreateOrgResponse struct {
	OrgInfo              *OrgInfo `protobuf:"bytes,1,opt,name=org_info,json=orgInfo,proto3" json:"org_info,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateOrgResponse) Descriptor

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

func (*CreateOrgResponse) GetOrgInfo

func (m *CreateOrgResponse) GetOrgInfo() *OrgInfo

func (*CreateOrgResponse) ProtoMessage

func (*CreateOrgResponse) ProtoMessage()

func (*CreateOrgResponse) Reset

func (m *CreateOrgResponse) Reset()

func (*CreateOrgResponse) String

func (m *CreateOrgResponse) String() string

func (*CreateOrgResponse) XXX_DiscardUnknown

func (m *CreateOrgResponse) XXX_DiscardUnknown()

func (*CreateOrgResponse) XXX_Marshal

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

func (*CreateOrgResponse) XXX_Merge

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

func (*CreateOrgResponse) XXX_Size

func (m *CreateOrgResponse) XXX_Size() int

func (*CreateOrgResponse) XXX_Unmarshal

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

type DestroyAccountRequest

type DestroyAccountRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DestroyAccountRequest) Descriptor

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

func (*DestroyAccountRequest) ProtoMessage

func (*DestroyAccountRequest) ProtoMessage()

func (*DestroyAccountRequest) Reset

func (m *DestroyAccountRequest) Reset()

func (*DestroyAccountRequest) String

func (m *DestroyAccountRequest) String() string

func (*DestroyAccountRequest) XXX_DiscardUnknown

func (m *DestroyAccountRequest) XXX_DiscardUnknown()

func (*DestroyAccountRequest) XXX_Marshal

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

func (*DestroyAccountRequest) XXX_Merge

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

func (*DestroyAccountRequest) XXX_Size

func (m *DestroyAccountRequest) XXX_Size() int

func (*DestroyAccountRequest) XXX_Unmarshal

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

type DestroyAccountResponse

type DestroyAccountResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DestroyAccountResponse) Descriptor

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

func (*DestroyAccountResponse) ProtoMessage

func (*DestroyAccountResponse) ProtoMessage()

func (*DestroyAccountResponse) Reset

func (m *DestroyAccountResponse) Reset()

func (*DestroyAccountResponse) String

func (m *DestroyAccountResponse) String() string

func (*DestroyAccountResponse) XXX_DiscardUnknown

func (m *DestroyAccountResponse) XXX_DiscardUnknown()

func (*DestroyAccountResponse) XXX_Marshal

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

func (*DestroyAccountResponse) XXX_Merge

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

func (*DestroyAccountResponse) XXX_Size

func (m *DestroyAccountResponse) XXX_Size() int

func (*DestroyAccountResponse) XXX_Unmarshal

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

type GetBillingSessionRequest

type GetBillingSessionRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetBillingSessionRequest) Descriptor

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

func (*GetBillingSessionRequest) ProtoMessage

func (*GetBillingSessionRequest) ProtoMessage()

func (*GetBillingSessionRequest) Reset

func (m *GetBillingSessionRequest) Reset()

func (*GetBillingSessionRequest) String

func (m *GetBillingSessionRequest) String() string

func (*GetBillingSessionRequest) XXX_DiscardUnknown

func (m *GetBillingSessionRequest) XXX_DiscardUnknown()

func (*GetBillingSessionRequest) XXX_Marshal

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

func (*GetBillingSessionRequest) XXX_Merge

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

func (*GetBillingSessionRequest) XXX_Size

func (m *GetBillingSessionRequest) XXX_Size() int

func (*GetBillingSessionRequest) XXX_Unmarshal

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

type GetBillingSessionResponse

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

func (*GetBillingSessionResponse) Descriptor

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

func (*GetBillingSessionResponse) GetUrl

func (m *GetBillingSessionResponse) GetUrl() string

func (*GetBillingSessionResponse) ProtoMessage

func (*GetBillingSessionResponse) ProtoMessage()

func (*GetBillingSessionResponse) Reset

func (m *GetBillingSessionResponse) Reset()

func (*GetBillingSessionResponse) String

func (m *GetBillingSessionResponse) String() string

func (*GetBillingSessionResponse) XXX_DiscardUnknown

func (m *GetBillingSessionResponse) XXX_DiscardUnknown()

func (*GetBillingSessionResponse) XXX_Marshal

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

func (*GetBillingSessionResponse) XXX_Merge

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

func (*GetBillingSessionResponse) XXX_Size

func (m *GetBillingSessionResponse) XXX_Size() int

func (*GetBillingSessionResponse) XXX_Unmarshal

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

type GetIdentityRequest

type GetIdentityRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetIdentityRequest) Descriptor

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

func (*GetIdentityRequest) ProtoMessage

func (*GetIdentityRequest) ProtoMessage()

func (*GetIdentityRequest) Reset

func (m *GetIdentityRequest) Reset()

func (*GetIdentityRequest) String

func (m *GetIdentityRequest) String() string

func (*GetIdentityRequest) XXX_DiscardUnknown

func (m *GetIdentityRequest) XXX_DiscardUnknown()

func (*GetIdentityRequest) XXX_Marshal

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

func (*GetIdentityRequest) XXX_Merge

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

func (*GetIdentityRequest) XXX_Size

func (m *GetIdentityRequest) XXX_Size() int

func (*GetIdentityRequest) XXX_Unmarshal

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

type GetIdentityResponse

type GetIdentityResponse struct {
	Identity             []byte   `protobuf:"bytes,1,opt,name=identity,proto3" json:"identity,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetIdentityResponse) Descriptor

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

func (*GetIdentityResponse) GetIdentity

func (m *GetIdentityResponse) GetIdentity() []byte

func (*GetIdentityResponse) ProtoMessage

func (*GetIdentityResponse) ProtoMessage()

func (*GetIdentityResponse) Reset

func (m *GetIdentityResponse) Reset()

func (*GetIdentityResponse) String

func (m *GetIdentityResponse) String() string

func (*GetIdentityResponse) XXX_DiscardUnknown

func (m *GetIdentityResponse) XXX_DiscardUnknown()

func (*GetIdentityResponse) XXX_Marshal

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

func (*GetIdentityResponse) XXX_Merge

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

func (*GetIdentityResponse) XXX_Size

func (m *GetIdentityResponse) XXX_Size() int

func (*GetIdentityResponse) XXX_Unmarshal

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

type GetOrgRequest

type GetOrgRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetOrgRequest) Descriptor

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

func (*GetOrgRequest) ProtoMessage

func (*GetOrgRequest) ProtoMessage()

func (*GetOrgRequest) Reset

func (m *GetOrgRequest) Reset()

func (*GetOrgRequest) String

func (m *GetOrgRequest) String() string

func (*GetOrgRequest) XXX_DiscardUnknown

func (m *GetOrgRequest) XXX_DiscardUnknown()

func (*GetOrgRequest) XXX_Marshal

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

func (*GetOrgRequest) XXX_Merge

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

func (*GetOrgRequest) XXX_Size

func (m *GetOrgRequest) XXX_Size() int

func (*GetOrgRequest) XXX_Unmarshal

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

type GetOrgResponse

type GetOrgResponse struct {
	OrgInfo              *OrgInfo `protobuf:"bytes,1,opt,name=org_info,json=orgInfo,proto3" json:"org_info,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetOrgResponse) Descriptor

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

func (*GetOrgResponse) GetOrgInfo

func (m *GetOrgResponse) GetOrgInfo() *OrgInfo

func (*GetOrgResponse) ProtoMessage

func (*GetOrgResponse) ProtoMessage()

func (*GetOrgResponse) Reset

func (m *GetOrgResponse) Reset()

func (*GetOrgResponse) String

func (m *GetOrgResponse) String() string

func (*GetOrgResponse) XXX_DiscardUnknown

func (m *GetOrgResponse) XXX_DiscardUnknown()

func (*GetOrgResponse) XXX_Marshal

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

func (*GetOrgResponse) XXX_Merge

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

func (*GetOrgResponse) XXX_Size

func (m *GetOrgResponse) XXX_Size() int

func (*GetOrgResponse) XXX_Unmarshal

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

type GetSessionInfoRequest

type GetSessionInfoRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetSessionInfoRequest) Descriptor

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

func (*GetSessionInfoRequest) ProtoMessage

func (*GetSessionInfoRequest) ProtoMessage()

func (*GetSessionInfoRequest) Reset

func (m *GetSessionInfoRequest) Reset()

func (*GetSessionInfoRequest) String

func (m *GetSessionInfoRequest) String() string

func (*GetSessionInfoRequest) XXX_DiscardUnknown

func (m *GetSessionInfoRequest) XXX_DiscardUnknown()

func (*GetSessionInfoRequest) XXX_Marshal

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

func (*GetSessionInfoRequest) XXX_Merge

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

func (*GetSessionInfoRequest) XXX_Size

func (m *GetSessionInfoRequest) XXX_Size() int

func (*GetSessionInfoRequest) XXX_Unmarshal

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

type GetSessionInfoResponse

type GetSessionInfoResponse struct {
	Key                  []byte   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Username             string   `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
	Email                string   `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetSessionInfoResponse) Descriptor

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

func (*GetSessionInfoResponse) GetEmail

func (m *GetSessionInfoResponse) GetEmail() string

func (*GetSessionInfoResponse) GetKey

func (m *GetSessionInfoResponse) GetKey() []byte

func (*GetSessionInfoResponse) GetUsername

func (m *GetSessionInfoResponse) GetUsername() string

func (*GetSessionInfoResponse) ProtoMessage

func (*GetSessionInfoResponse) ProtoMessage()

func (*GetSessionInfoResponse) Reset

func (m *GetSessionInfoResponse) Reset()

func (*GetSessionInfoResponse) String

func (m *GetSessionInfoResponse) String() string

func (*GetSessionInfoResponse) XXX_DiscardUnknown

func (m *GetSessionInfoResponse) XXX_DiscardUnknown()

func (*GetSessionInfoResponse) XXX_Marshal

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

func (*GetSessionInfoResponse) XXX_Merge

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

func (*GetSessionInfoResponse) XXX_Size

func (m *GetSessionInfoResponse) XXX_Size() int

func (*GetSessionInfoResponse) XXX_Unmarshal

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

type InvalidateKeyRequest

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

func (*InvalidateKeyRequest) Descriptor

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

func (*InvalidateKeyRequest) GetKey

func (m *InvalidateKeyRequest) GetKey() string

func (*InvalidateKeyRequest) ProtoMessage

func (*InvalidateKeyRequest) ProtoMessage()

func (*InvalidateKeyRequest) Reset

func (m *InvalidateKeyRequest) Reset()

func (*InvalidateKeyRequest) String

func (m *InvalidateKeyRequest) String() string

func (*InvalidateKeyRequest) XXX_DiscardUnknown

func (m *InvalidateKeyRequest) XXX_DiscardUnknown()

func (*InvalidateKeyRequest) XXX_Marshal

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

func (*InvalidateKeyRequest) XXX_Merge

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

func (*InvalidateKeyRequest) XXX_Size

func (m *InvalidateKeyRequest) XXX_Size() int

func (*InvalidateKeyRequest) XXX_Unmarshal

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

type InvalidateKeyResponse

type InvalidateKeyResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*InvalidateKeyResponse) Descriptor

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

func (*InvalidateKeyResponse) ProtoMessage

func (*InvalidateKeyResponse) ProtoMessage()

func (*InvalidateKeyResponse) Reset

func (m *InvalidateKeyResponse) Reset()

func (*InvalidateKeyResponse) String

func (m *InvalidateKeyResponse) String() string

func (*InvalidateKeyResponse) XXX_DiscardUnknown

func (m *InvalidateKeyResponse) XXX_DiscardUnknown()

func (*InvalidateKeyResponse) XXX_Marshal

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

func (*InvalidateKeyResponse) XXX_Merge

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

func (*InvalidateKeyResponse) XXX_Size

func (m *InvalidateKeyResponse) XXX_Size() int

func (*InvalidateKeyResponse) XXX_Unmarshal

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

type InviteToOrgRequest

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

func (*InviteToOrgRequest) Descriptor

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

func (*InviteToOrgRequest) GetEmail

func (m *InviteToOrgRequest) GetEmail() string

func (*InviteToOrgRequest) ProtoMessage

func (*InviteToOrgRequest) ProtoMessage()

func (*InviteToOrgRequest) Reset

func (m *InviteToOrgRequest) Reset()

func (*InviteToOrgRequest) String

func (m *InviteToOrgRequest) String() string

func (*InviteToOrgRequest) XXX_DiscardUnknown

func (m *InviteToOrgRequest) XXX_DiscardUnknown()

func (*InviteToOrgRequest) XXX_Marshal

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

func (*InviteToOrgRequest) XXX_Merge

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

func (*InviteToOrgRequest) XXX_Size

func (m *InviteToOrgRequest) XXX_Size() int

func (*InviteToOrgRequest) XXX_Unmarshal

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

type InviteToOrgResponse

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

func (*InviteToOrgResponse) Descriptor

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

func (*InviteToOrgResponse) GetToken

func (m *InviteToOrgResponse) GetToken() string

func (*InviteToOrgResponse) ProtoMessage

func (*InviteToOrgResponse) ProtoMessage()

func (*InviteToOrgResponse) Reset

func (m *InviteToOrgResponse) Reset()

func (*InviteToOrgResponse) String

func (m *InviteToOrgResponse) String() string

func (*InviteToOrgResponse) XXX_DiscardUnknown

func (m *InviteToOrgResponse) XXX_DiscardUnknown()

func (*InviteToOrgResponse) XXX_Marshal

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

func (*InviteToOrgResponse) XXX_Merge

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

func (*InviteToOrgResponse) XXX_Size

func (m *InviteToOrgResponse) XXX_Size() int

func (*InviteToOrgResponse) XXX_Unmarshal

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

type IsOrgNameAvailableRequest

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

func (*IsOrgNameAvailableRequest) Descriptor

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

func (*IsOrgNameAvailableRequest) GetName

func (m *IsOrgNameAvailableRequest) GetName() string

func (*IsOrgNameAvailableRequest) ProtoMessage

func (*IsOrgNameAvailableRequest) ProtoMessage()

func (*IsOrgNameAvailableRequest) Reset

func (m *IsOrgNameAvailableRequest) Reset()

func (*IsOrgNameAvailableRequest) String

func (m *IsOrgNameAvailableRequest) String() string

func (*IsOrgNameAvailableRequest) XXX_DiscardUnknown

func (m *IsOrgNameAvailableRequest) XXX_DiscardUnknown()

func (*IsOrgNameAvailableRequest) XXX_Marshal

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

func (*IsOrgNameAvailableRequest) XXX_Merge

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

func (*IsOrgNameAvailableRequest) XXX_Size

func (m *IsOrgNameAvailableRequest) XXX_Size() int

func (*IsOrgNameAvailableRequest) XXX_Unmarshal

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

type IsOrgNameAvailableResponse

type IsOrgNameAvailableResponse struct {
	Slug                 string   `protobuf:"bytes,1,opt,name=slug,proto3" json:"slug,omitempty"`
	Host                 string   `protobuf:"bytes,2,opt,name=host,proto3" json:"host,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*IsOrgNameAvailableResponse) Descriptor

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

func (*IsOrgNameAvailableResponse) GetHost

func (m *IsOrgNameAvailableResponse) GetHost() string

func (*IsOrgNameAvailableResponse) GetSlug

func (m *IsOrgNameAvailableResponse) GetSlug() string

func (*IsOrgNameAvailableResponse) ProtoMessage

func (*IsOrgNameAvailableResponse) ProtoMessage()

func (*IsOrgNameAvailableResponse) Reset

func (m *IsOrgNameAvailableResponse) Reset()

func (*IsOrgNameAvailableResponse) String

func (m *IsOrgNameAvailableResponse) String() string

func (*IsOrgNameAvailableResponse) XXX_DiscardUnknown

func (m *IsOrgNameAvailableResponse) XXX_DiscardUnknown()

func (*IsOrgNameAvailableResponse) XXX_Marshal

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

func (*IsOrgNameAvailableResponse) XXX_Merge

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

func (*IsOrgNameAvailableResponse) XXX_Size

func (m *IsOrgNameAvailableResponse) XXX_Size() int

func (*IsOrgNameAvailableResponse) XXX_Unmarshal

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

type IsUsernameAvailableRequest

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

func (*IsUsernameAvailableRequest) Descriptor

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

func (*IsUsernameAvailableRequest) GetUsername

func (m *IsUsernameAvailableRequest) GetUsername() string

func (*IsUsernameAvailableRequest) ProtoMessage

func (*IsUsernameAvailableRequest) ProtoMessage()

func (*IsUsernameAvailableRequest) Reset

func (m *IsUsernameAvailableRequest) Reset()

func (*IsUsernameAvailableRequest) String

func (m *IsUsernameAvailableRequest) String() string

func (*IsUsernameAvailableRequest) XXX_DiscardUnknown

func (m *IsUsernameAvailableRequest) XXX_DiscardUnknown()

func (*IsUsernameAvailableRequest) XXX_Marshal

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

func (*IsUsernameAvailableRequest) XXX_Merge

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

func (*IsUsernameAvailableRequest) XXX_Size

func (m *IsUsernameAvailableRequest) XXX_Size() int

func (*IsUsernameAvailableRequest) XXX_Unmarshal

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

type IsUsernameAvailableResponse

type IsUsernameAvailableResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*IsUsernameAvailableResponse) Descriptor

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

func (*IsUsernameAvailableResponse) ProtoMessage

func (*IsUsernameAvailableResponse) ProtoMessage()

func (*IsUsernameAvailableResponse) Reset

func (m *IsUsernameAvailableResponse) Reset()

func (*IsUsernameAvailableResponse) String

func (m *IsUsernameAvailableResponse) String() string

func (*IsUsernameAvailableResponse) XXX_DiscardUnknown

func (m *IsUsernameAvailableResponse) XXX_DiscardUnknown()

func (*IsUsernameAvailableResponse) XXX_Marshal

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

func (*IsUsernameAvailableResponse) XXX_Merge

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

func (*IsUsernameAvailableResponse) XXX_Size

func (m *IsUsernameAvailableResponse) XXX_Size() int

func (*IsUsernameAvailableResponse) XXX_Unmarshal

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

type KeyInfo

type KeyInfo struct {
	Key                  string   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Secret               string   `protobuf:"bytes,2,opt,name=secret,proto3" json:"secret,omitempty"`
	Type                 KeyType  `protobuf:"varint,3,opt,name=type,proto3,enum=api.hubd.pb.KeyType" json:"type,omitempty"`
	Valid                bool     `protobuf:"varint,4,opt,name=valid,proto3" json:"valid,omitempty"`
	Threads              int32    `protobuf:"varint,5,opt,name=threads,proto3" json:"threads,omitempty"`
	Secure               bool     `protobuf:"varint,6,opt,name=secure,proto3" json:"secure,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*KeyInfo) Descriptor

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

func (*KeyInfo) GetKey

func (m *KeyInfo) GetKey() string

func (*KeyInfo) GetSecret

func (m *KeyInfo) GetSecret() string

func (*KeyInfo) GetSecure

func (m *KeyInfo) GetSecure() bool

func (*KeyInfo) GetThreads

func (m *KeyInfo) GetThreads() int32

func (*KeyInfo) GetType

func (m *KeyInfo) GetType() KeyType

func (*KeyInfo) GetValid

func (m *KeyInfo) GetValid() bool

func (*KeyInfo) ProtoMessage

func (*KeyInfo) ProtoMessage()

func (*KeyInfo) Reset

func (m *KeyInfo) Reset()

func (*KeyInfo) String

func (m *KeyInfo) String() string

func (*KeyInfo) XXX_DiscardUnknown

func (m *KeyInfo) XXX_DiscardUnknown()

func (*KeyInfo) XXX_Marshal

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

func (*KeyInfo) XXX_Merge

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

func (*KeyInfo) XXX_Size

func (m *KeyInfo) XXX_Size() int

func (*KeyInfo) XXX_Unmarshal

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

type KeyType

type KeyType int32
const (
	KeyType_KEY_TYPE_UNSPECIFIED KeyType = 0
	KeyType_KEY_TYPE_ACCOUNT     KeyType = 1
	KeyType_KEY_TYPE_USER        KeyType = 2
)

func (KeyType) EnumDescriptor

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

func (KeyType) String

func (x KeyType) String() string

type LeaveOrgRequest

type LeaveOrgRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*LeaveOrgRequest) Descriptor

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

func (*LeaveOrgRequest) ProtoMessage

func (*LeaveOrgRequest) ProtoMessage()

func (*LeaveOrgRequest) Reset

func (m *LeaveOrgRequest) Reset()

func (*LeaveOrgRequest) String

func (m *LeaveOrgRequest) String() string

func (*LeaveOrgRequest) XXX_DiscardUnknown

func (m *LeaveOrgRequest) XXX_DiscardUnknown()

func (*LeaveOrgRequest) XXX_Marshal

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

func (*LeaveOrgRequest) XXX_Merge

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

func (*LeaveOrgRequest) XXX_Size

func (m *LeaveOrgRequest) XXX_Size() int

func (*LeaveOrgRequest) XXX_Unmarshal

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

type LeaveOrgResponse

type LeaveOrgResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*LeaveOrgResponse) Descriptor

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

func (*LeaveOrgResponse) ProtoMessage

func (*LeaveOrgResponse) ProtoMessage()

func (*LeaveOrgResponse) Reset

func (m *LeaveOrgResponse) Reset()

func (*LeaveOrgResponse) String

func (m *LeaveOrgResponse) String() string

func (*LeaveOrgResponse) XXX_DiscardUnknown

func (m *LeaveOrgResponse) XXX_DiscardUnknown()

func (*LeaveOrgResponse) XXX_Marshal

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

func (*LeaveOrgResponse) XXX_Merge

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

func (*LeaveOrgResponse) XXX_Size

func (m *LeaveOrgResponse) XXX_Size() int

func (*LeaveOrgResponse) XXX_Unmarshal

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

type ListBillingUsersRequest

type ListBillingUsersRequest struct {
	Offset               int64    `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
	Limit                int64    `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListBillingUsersRequest) Descriptor

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

func (*ListBillingUsersRequest) GetLimit

func (m *ListBillingUsersRequest) GetLimit() int64

func (*ListBillingUsersRequest) GetOffset

func (m *ListBillingUsersRequest) GetOffset() int64

func (*ListBillingUsersRequest) ProtoMessage

func (*ListBillingUsersRequest) ProtoMessage()

func (*ListBillingUsersRequest) Reset

func (m *ListBillingUsersRequest) Reset()

func (*ListBillingUsersRequest) String

func (m *ListBillingUsersRequest) String() string

func (*ListBillingUsersRequest) XXX_DiscardUnknown

func (m *ListBillingUsersRequest) XXX_DiscardUnknown()

func (*ListBillingUsersRequest) XXX_Marshal

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

func (*ListBillingUsersRequest) XXX_Merge

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

func (*ListBillingUsersRequest) XXX_Size

func (m *ListBillingUsersRequest) XXX_Size() int

func (*ListBillingUsersRequest) XXX_Unmarshal

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

type ListBillingUsersResponse

type ListBillingUsersResponse struct {
	Users                []*pb.GetCustomerResponse `protobuf:"bytes,1,rep,name=users,proto3" json:"users,omitempty"`
	NextOffset           int64                     `protobuf:"varint,2,opt,name=next_offset,json=nextOffset,proto3" json:"next_offset,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

func (*ListBillingUsersResponse) Descriptor

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

func (*ListBillingUsersResponse) GetNextOffset

func (m *ListBillingUsersResponse) GetNextOffset() int64

func (*ListBillingUsersResponse) GetUsers

func (*ListBillingUsersResponse) ProtoMessage

func (*ListBillingUsersResponse) ProtoMessage()

func (*ListBillingUsersResponse) Reset

func (m *ListBillingUsersResponse) Reset()

func (*ListBillingUsersResponse) String

func (m *ListBillingUsersResponse) String() string

func (*ListBillingUsersResponse) XXX_DiscardUnknown

func (m *ListBillingUsersResponse) XXX_DiscardUnknown()

func (*ListBillingUsersResponse) XXX_Marshal

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

func (*ListBillingUsersResponse) XXX_Merge

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

func (*ListBillingUsersResponse) XXX_Size

func (m *ListBillingUsersResponse) XXX_Size() int

func (*ListBillingUsersResponse) XXX_Unmarshal

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

type ListKeysRequest

type ListKeysRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListKeysRequest) Descriptor

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

func (*ListKeysRequest) ProtoMessage

func (*ListKeysRequest) ProtoMessage()

func (*ListKeysRequest) Reset

func (m *ListKeysRequest) Reset()

func (*ListKeysRequest) String

func (m *ListKeysRequest) String() string

func (*ListKeysRequest) XXX_DiscardUnknown

func (m *ListKeysRequest) XXX_DiscardUnknown()

func (*ListKeysRequest) XXX_Marshal

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

func (*ListKeysRequest) XXX_Merge

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

func (*ListKeysRequest) XXX_Size

func (m *ListKeysRequest) XXX_Size() int

func (*ListKeysRequest) XXX_Unmarshal

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

type ListKeysResponse

type ListKeysResponse struct {
	List                 []*KeyInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

func (*ListKeysResponse) Descriptor

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

func (*ListKeysResponse) GetList

func (m *ListKeysResponse) GetList() []*KeyInfo

func (*ListKeysResponse) ProtoMessage

func (*ListKeysResponse) ProtoMessage()

func (*ListKeysResponse) Reset

func (m *ListKeysResponse) Reset()

func (*ListKeysResponse) String

func (m *ListKeysResponse) String() string

func (*ListKeysResponse) XXX_DiscardUnknown

func (m *ListKeysResponse) XXX_DiscardUnknown()

func (*ListKeysResponse) XXX_Marshal

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

func (*ListKeysResponse) XXX_Merge

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

func (*ListKeysResponse) XXX_Size

func (m *ListKeysResponse) XXX_Size() int

func (*ListKeysResponse) XXX_Unmarshal

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

type ListOrgsRequest

type ListOrgsRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListOrgsRequest) Descriptor

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

func (*ListOrgsRequest) ProtoMessage

func (*ListOrgsRequest) ProtoMessage()

func (*ListOrgsRequest) Reset

func (m *ListOrgsRequest) Reset()

func (*ListOrgsRequest) String

func (m *ListOrgsRequest) String() string

func (*ListOrgsRequest) XXX_DiscardUnknown

func (m *ListOrgsRequest) XXX_DiscardUnknown()

func (*ListOrgsRequest) XXX_Marshal

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

func (*ListOrgsRequest) XXX_Merge

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

func (*ListOrgsRequest) XXX_Size

func (m *ListOrgsRequest) XXX_Size() int

func (*ListOrgsRequest) XXX_Unmarshal

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

type ListOrgsResponse

type ListOrgsResponse struct {
	List                 []*OrgInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

func (*ListOrgsResponse) Descriptor

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

func (*ListOrgsResponse) GetList

func (m *ListOrgsResponse) GetList() []*OrgInfo

func (*ListOrgsResponse) ProtoMessage

func (*ListOrgsResponse) ProtoMessage()

func (*ListOrgsResponse) Reset

func (m *ListOrgsResponse) Reset()

func (*ListOrgsResponse) String

func (m *ListOrgsResponse) String() string

func (*ListOrgsResponse) XXX_DiscardUnknown

func (m *ListOrgsResponse) XXX_DiscardUnknown()

func (*ListOrgsResponse) XXX_Marshal

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

func (*ListOrgsResponse) XXX_Merge

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

func (*ListOrgsResponse) XXX_Size

func (m *ListOrgsResponse) XXX_Size() int

func (*ListOrgsResponse) XXX_Unmarshal

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

type OrgInfo

type OrgInfo struct {
	Key                  []byte            `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Name                 string            `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Slug                 string            `protobuf:"bytes,3,opt,name=slug,proto3" json:"slug,omitempty"`
	Host                 string            `protobuf:"bytes,4,opt,name=host,proto3" json:"host,omitempty"`
	Members              []*OrgInfo_Member `protobuf:"bytes,5,rep,name=members,proto3" json:"members,omitempty"`
	CreatedAt            int64             `protobuf:"varint,6,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*OrgInfo) Descriptor

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

func (*OrgInfo) GetCreatedAt

func (m *OrgInfo) GetCreatedAt() int64

func (*OrgInfo) GetHost

func (m *OrgInfo) GetHost() string

func (*OrgInfo) GetKey

func (m *OrgInfo) GetKey() []byte

func (*OrgInfo) GetMembers

func (m *OrgInfo) GetMembers() []*OrgInfo_Member

func (*OrgInfo) GetName

func (m *OrgInfo) GetName() string

func (*OrgInfo) GetSlug

func (m *OrgInfo) GetSlug() string

func (*OrgInfo) ProtoMessage

func (*OrgInfo) ProtoMessage()

func (*OrgInfo) Reset

func (m *OrgInfo) Reset()

func (*OrgInfo) String

func (m *OrgInfo) String() string

func (*OrgInfo) XXX_DiscardUnknown

func (m *OrgInfo) XXX_DiscardUnknown()

func (*OrgInfo) XXX_Marshal

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

func (*OrgInfo) XXX_Merge

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

func (*OrgInfo) XXX_Size

func (m *OrgInfo) XXX_Size() int

func (*OrgInfo) XXX_Unmarshal

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

type OrgInfo_Member

type OrgInfo_Member struct {
	Key                  []byte   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Username             string   `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
	Role                 string   `protobuf:"bytes,3,opt,name=role,proto3" json:"role,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*OrgInfo_Member) Descriptor

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

func (*OrgInfo_Member) GetKey

func (m *OrgInfo_Member) GetKey() []byte

func (*OrgInfo_Member) GetRole

func (m *OrgInfo_Member) GetRole() string

func (*OrgInfo_Member) GetUsername

func (m *OrgInfo_Member) GetUsername() string

func (*OrgInfo_Member) ProtoMessage

func (*OrgInfo_Member) ProtoMessage()

func (*OrgInfo_Member) Reset

func (m *OrgInfo_Member) Reset()

func (*OrgInfo_Member) String

func (m *OrgInfo_Member) String() string

func (*OrgInfo_Member) XXX_DiscardUnknown

func (m *OrgInfo_Member) XXX_DiscardUnknown()

func (*OrgInfo_Member) XXX_Marshal

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

func (*OrgInfo_Member) XXX_Merge

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

func (*OrgInfo_Member) XXX_Size

func (m *OrgInfo_Member) XXX_Size() int

func (*OrgInfo_Member) XXX_Unmarshal

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

type RemoveOrgRequest

type RemoveOrgRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RemoveOrgRequest) Descriptor

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

func (*RemoveOrgRequest) ProtoMessage

func (*RemoveOrgRequest) ProtoMessage()

func (*RemoveOrgRequest) Reset

func (m *RemoveOrgRequest) Reset()

func (*RemoveOrgRequest) String

func (m *RemoveOrgRequest) String() string

func (*RemoveOrgRequest) XXX_DiscardUnknown

func (m *RemoveOrgRequest) XXX_DiscardUnknown()

func (*RemoveOrgRequest) XXX_Marshal

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

func (*RemoveOrgRequest) XXX_Merge

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

func (*RemoveOrgRequest) XXX_Size

func (m *RemoveOrgRequest) XXX_Size() int

func (*RemoveOrgRequest) XXX_Unmarshal

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

type RemoveOrgResponse

type RemoveOrgResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RemoveOrgResponse) Descriptor

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

func (*RemoveOrgResponse) ProtoMessage

func (*RemoveOrgResponse) ProtoMessage()

func (*RemoveOrgResponse) Reset

func (m *RemoveOrgResponse) Reset()

func (*RemoveOrgResponse) String

func (m *RemoveOrgResponse) String() string

func (*RemoveOrgResponse) XXX_DiscardUnknown

func (m *RemoveOrgResponse) XXX_DiscardUnknown()

func (*RemoveOrgResponse) XXX_Marshal

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

func (*RemoveOrgResponse) XXX_Merge

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

func (*RemoveOrgResponse) XXX_Size

func (m *RemoveOrgResponse) XXX_Size() int

func (*RemoveOrgResponse) XXX_Unmarshal

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

type SetupBillingRequest

type SetupBillingRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SetupBillingRequest) Descriptor

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

func (*SetupBillingRequest) ProtoMessage

func (*SetupBillingRequest) ProtoMessage()

func (*SetupBillingRequest) Reset

func (m *SetupBillingRequest) Reset()

func (*SetupBillingRequest) String

func (m *SetupBillingRequest) String() string

func (*SetupBillingRequest) XXX_DiscardUnknown

func (m *SetupBillingRequest) XXX_DiscardUnknown()

func (*SetupBillingRequest) XXX_Marshal

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

func (*SetupBillingRequest) XXX_Merge

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

func (*SetupBillingRequest) XXX_Size

func (m *SetupBillingRequest) XXX_Size() int

func (*SetupBillingRequest) XXX_Unmarshal

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

type SetupBillingResponse

type SetupBillingResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SetupBillingResponse) Descriptor

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

func (*SetupBillingResponse) ProtoMessage

func (*SetupBillingResponse) ProtoMessage()

func (*SetupBillingResponse) Reset

func (m *SetupBillingResponse) Reset()

func (*SetupBillingResponse) String

func (m *SetupBillingResponse) String() string

func (*SetupBillingResponse) XXX_DiscardUnknown

func (m *SetupBillingResponse) XXX_DiscardUnknown()

func (*SetupBillingResponse) XXX_Marshal

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

func (*SetupBillingResponse) XXX_Merge

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

func (*SetupBillingResponse) XXX_Size

func (m *SetupBillingResponse) XXX_Size() int

func (*SetupBillingResponse) XXX_Unmarshal

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

type SigninRequest

type SigninRequest struct {
	UsernameOrEmail      string   `protobuf:"bytes,1,opt,name=username_or_email,json=usernameOrEmail,proto3" json:"username_or_email,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SigninRequest) Descriptor

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

func (*SigninRequest) GetUsernameOrEmail

func (m *SigninRequest) GetUsernameOrEmail() string

func (*SigninRequest) ProtoMessage

func (*SigninRequest) ProtoMessage()

func (*SigninRequest) Reset

func (m *SigninRequest) Reset()

func (*SigninRequest) String

func (m *SigninRequest) String() string

func (*SigninRequest) XXX_DiscardUnknown

func (m *SigninRequest) XXX_DiscardUnknown()

func (*SigninRequest) XXX_Marshal

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

func (*SigninRequest) XXX_Merge

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

func (*SigninRequest) XXX_Size

func (m *SigninRequest) XXX_Size() int

func (*SigninRequest) XXX_Unmarshal

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

type SigninResponse

type SigninResponse struct {
	Key                  []byte   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Session              string   `protobuf:"bytes,2,opt,name=session,proto3" json:"session,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SigninResponse) Descriptor

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

func (*SigninResponse) GetKey

func (m *SigninResponse) GetKey() []byte

func (*SigninResponse) GetSession

func (m *SigninResponse) GetSession() string

func (*SigninResponse) ProtoMessage

func (*SigninResponse) ProtoMessage()

func (*SigninResponse) Reset

func (m *SigninResponse) Reset()

func (*SigninResponse) String

func (m *SigninResponse) String() string

func (*SigninResponse) XXX_DiscardUnknown

func (m *SigninResponse) XXX_DiscardUnknown()

func (*SigninResponse) XXX_Marshal

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

func (*SigninResponse) XXX_Merge

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

func (*SigninResponse) XXX_Size

func (m *SigninResponse) XXX_Size() int

func (*SigninResponse) XXX_Unmarshal

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

type SignoutRequest

type SignoutRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SignoutRequest) Descriptor

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

func (*SignoutRequest) ProtoMessage

func (*SignoutRequest) ProtoMessage()

func (*SignoutRequest) Reset

func (m *SignoutRequest) Reset()

func (*SignoutRequest) String

func (m *SignoutRequest) String() string

func (*SignoutRequest) XXX_DiscardUnknown

func (m *SignoutRequest) XXX_DiscardUnknown()

func (*SignoutRequest) XXX_Marshal

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

func (*SignoutRequest) XXX_Merge

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

func (*SignoutRequest) XXX_Size

func (m *SignoutRequest) XXX_Size() int

func (*SignoutRequest) XXX_Unmarshal

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

type SignoutResponse

type SignoutResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SignoutResponse) Descriptor

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

func (*SignoutResponse) ProtoMessage

func (*SignoutResponse) ProtoMessage()

func (*SignoutResponse) Reset

func (m *SignoutResponse) Reset()

func (*SignoutResponse) String

func (m *SignoutResponse) String() string

func (*SignoutResponse) XXX_DiscardUnknown

func (m *SignoutResponse) XXX_DiscardUnknown()

func (*SignoutResponse) XXX_Marshal

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

func (*SignoutResponse) XXX_Merge

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

func (*SignoutResponse) XXX_Size

func (m *SignoutResponse) XXX_Size() int

func (*SignoutResponse) XXX_Unmarshal

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

type SignupRequest

type SignupRequest struct {
	Username             string   `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
	Email                string   `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SignupRequest) Descriptor

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

func (*SignupRequest) GetEmail

func (m *SignupRequest) GetEmail() string

func (*SignupRequest) GetUsername

func (m *SignupRequest) GetUsername() string

func (*SignupRequest) ProtoMessage

func (*SignupRequest) ProtoMessage()

func (*SignupRequest) Reset

func (m *SignupRequest) Reset()

func (*SignupRequest) String

func (m *SignupRequest) String() string

func (*SignupRequest) XXX_DiscardUnknown

func (m *SignupRequest) XXX_DiscardUnknown()

func (*SignupRequest) XXX_Marshal

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

func (*SignupRequest) XXX_Merge

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

func (*SignupRequest) XXX_Size

func (m *SignupRequest) XXX_Size() int

func (*SignupRequest) XXX_Unmarshal

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

type SignupResponse

type SignupResponse struct {
	Key                  []byte   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Session              string   `protobuf:"bytes,2,opt,name=session,proto3" json:"session,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SignupResponse) Descriptor

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

func (*SignupResponse) GetKey

func (m *SignupResponse) GetKey() []byte

func (*SignupResponse) GetSession

func (m *SignupResponse) GetSession() string

func (*SignupResponse) ProtoMessage

func (*SignupResponse) ProtoMessage()

func (*SignupResponse) Reset

func (m *SignupResponse) Reset()

func (*SignupResponse) String

func (m *SignupResponse) String() string

func (*SignupResponse) XXX_DiscardUnknown

func (m *SignupResponse) XXX_DiscardUnknown()

func (*SignupResponse) XXX_Marshal

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

func (*SignupResponse) XXX_Merge

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

func (*SignupResponse) XXX_Size

func (m *SignupResponse) XXX_Size() int

func (*SignupResponse) XXX_Unmarshal

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

type UnimplementedAPIServiceServer

type UnimplementedAPIServiceServer struct {
}

UnimplementedAPIServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedAPIServiceServer) BuildInfo

func (*UnimplementedAPIServiceServer) CreateKey

func (*UnimplementedAPIServiceServer) CreateOrg

func (*UnimplementedAPIServiceServer) DestroyAccount

func (*UnimplementedAPIServiceServer) GetBillingSession

func (*UnimplementedAPIServiceServer) GetIdentity

func (*UnimplementedAPIServiceServer) GetOrg

func (*UnimplementedAPIServiceServer) GetSessionInfo

func (*UnimplementedAPIServiceServer) InvalidateKey

func (*UnimplementedAPIServiceServer) InviteToOrg

func (*UnimplementedAPIServiceServer) IsOrgNameAvailable

func (*UnimplementedAPIServiceServer) IsUsernameAvailable

func (*UnimplementedAPIServiceServer) LeaveOrg

func (*UnimplementedAPIServiceServer) ListBillingUsers

func (*UnimplementedAPIServiceServer) ListKeys

func (*UnimplementedAPIServiceServer) ListOrgs

func (*UnimplementedAPIServiceServer) RemoveOrg

func (*UnimplementedAPIServiceServer) SetupBilling

func (*UnimplementedAPIServiceServer) Signin

func (*UnimplementedAPIServiceServer) Signout

func (*UnimplementedAPIServiceServer) Signup

Jump to

Keyboard shortcuts

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