api

package
v0.0.0-...-54e49cf Latest Latest
Warning

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

Go to latest
Published: Sep 16, 2021 License: MIT Imports: 29 Imported by: 0

Documentation

Overview

Package api is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

This section is empty.

Variables

View Source
var (
	LikeType_name = map[int32]string{
		0: "Browser",
		1: "Left",
		2: "Middle",
		3: "Right",
	}
	LikeType_value = map[string]int32{
		"Browser": 0,
		"Left":    1,
		"Middle":  2,
		"Right":   3,
	}
)

Enum value maps for LikeType.

View Source
var (
	GenderType_name = map[int32]string{
		0: "None",
		1: "Man",
		2: "Women",
		3: "Double",
	}
	GenderType_value = map[string]int32{
		"None":   0,
		"Man":    1,
		"Women":  2,
		"Double": 3,
	}
)

Enum value maps for GenderType.

View Source
var (
	UserStatus_name = map[int32]string{
		0: "Rest",
		1: "Study",
		2: "Busy",
		3: "Working",
	}
	UserStatus_value = map[string]int32{
		"Rest":    0,
		"Study":   1,
		"Busy":    2,
		"Working": 3,
	}
)

Enum value maps for UserStatus.

View Source
var (
	GroupStatus_name = map[int32]string{
		0: "NotReady",
		1: "Normal",
		2: "ViewOnly",
		3: "Abandon",
	}
	GroupStatus_value = map[string]int32{
		"NotReady": 0,
		"Normal":   1,
		"ViewOnly": 2,
		"Abandon":  3,
	}
)

Enum value maps for GroupStatus.

View Source
var (
	ActiveType_name = map[int32]string{
		0: "AllActive",
		1: "Like",
		2: "Share",
		3: "Comment",
		4: "Collect",
		5: "DisAgree",
	}
	ActiveType_value = map[string]int32{
		"AllActive": 0,
		"Like":      1,
		"Share":     2,
		"Comment":   3,
		"Collect":   4,
		"DisAgree":  5,
	}
)

Enum value maps for ActiveType.

View Source
var (
	ItemType_name = map[int32]string{
		0: "AllItem",
		1: "ShortWord",
		2: "Paper",
		3: "Picture",
		4: "Video",
		5: "Music",
		6: "Link",
		7: "Location",
	}
	ItemType_value = map[string]int32{
		"AllItem":   0,
		"ShortWord": 1,
		"Paper":     2,
		"Picture":   3,
		"Video":     4,
		"Music":     5,
		"Link":      6,
		"Location":  7,
	}
)

Enum value maps for ItemType.

View Source
var (
	AuthType_name = map[int32]string{
		0: "NotSupport",
		1: "WithPhone",
		2: "WithEmail",
	}
	AuthType_value = map[string]int32{
		"NotSupport": 0,
		"WithPhone":  1,
		"WithEmail":  2,
	}
)

Enum value maps for AuthType.

View Source
var (
	VisibleType_name = map[int32]string{
		0: "AllPublic",
		1: "Public",
		2: "Private",
		3: "Someone",
	}
	VisibleType_value = map[string]int32{
		"AllPublic": 0,
		"Public":    1,
		"Private":   2,
		"Someone":   3,
	}
)

Enum value maps for VisibleType.

View Source
var File_github_com_grapery_grapery_common_protoc_comment_proto protoreflect.FileDescriptor
View Source
var File_github_com_grapery_grapery_common_protoc_group_proto protoreflect.FileDescriptor
View Source
var File_github_com_grapery_grapery_common_protoc_item_proto protoreflect.FileDescriptor
View Source
var File_github_com_grapery_grapery_common_protoc_project_proto protoreflect.FileDescriptor
View Source
var File_github_com_grapery_grapery_common_protoc_service_proto protoreflect.FileDescriptor
View Source
var File_github_com_grapery_grapery_common_protoc_team_proto protoreflect.FileDescriptor
View Source
var File_github_com_grapery_grapery_common_protoc_user_proto protoreflect.FileDescriptor
View Source
var File_github_com_grapery_grapery_common_protoc_view_model_proto protoreflect.FileDescriptor

Functions

func RegisterAuthHandler

func RegisterAuthHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterAuthHandler registers the http handlers for service Auth to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterAuthHandlerClient

func RegisterAuthHandlerClient(ctx context.Context, mux *runtime.ServeMux, client AuthClient) error

RegisterAuthHandlerClient registers the http handlers for service Auth to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "AuthClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "AuthClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "AuthClient" to call the correct interceptors.

func RegisterAuthHandlerFromEndpoint

func RegisterAuthHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterAuthHandlerFromEndpoint is same as RegisterAuthHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterAuthHandlerServer

func RegisterAuthHandlerServer(ctx context.Context, mux *runtime.ServeMux, server AuthServer) error

RegisterAuthHandlerServer registers the http handlers for service Auth to "mux". UnaryRPC :call AuthServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.

func RegisterAuthServer

func RegisterAuthServer(s *grpc.Server, srv AuthServer)

func RegisterItemHandler

func RegisterItemHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterItemHandler registers the http handlers for service Item to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterItemHandlerClient

func RegisterItemHandlerClient(ctx context.Context, mux *runtime.ServeMux, client ItemClient) error

RegisterItemHandlerClient registers the http handlers for service Item to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "ItemClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "ItemClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "ItemClient" to call the correct interceptors.

func RegisterItemHandlerFromEndpoint

func RegisterItemHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterItemHandlerFromEndpoint is same as RegisterItemHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterItemHandlerServer

func RegisterItemHandlerServer(ctx context.Context, mux *runtime.ServeMux, server ItemServer) error

RegisterItemHandlerServer registers the http handlers for service Item to "mux". UnaryRPC :call ItemServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.

func RegisterItemServer

func RegisterItemServer(s *grpc.Server, srv ItemServer)

func RegisterOrgHandler

func RegisterOrgHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterOrgHandler registers the http handlers for service Org to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterOrgHandlerClient

func RegisterOrgHandlerClient(ctx context.Context, mux *runtime.ServeMux, client OrgClient) error

RegisterOrgHandlerClient registers the http handlers for service Org to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "OrgClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "OrgClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "OrgClient" to call the correct interceptors.

func RegisterOrgHandlerFromEndpoint

func RegisterOrgHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterOrgHandlerFromEndpoint is same as RegisterOrgHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterOrgHandlerServer

func RegisterOrgHandlerServer(ctx context.Context, mux *runtime.ServeMux, server OrgServer) error

RegisterOrgHandlerServer registers the http handlers for service Org to "mux". UnaryRPC :call OrgServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.

func RegisterOrgServer

func RegisterOrgServer(s *grpc.Server, srv OrgServer)

func RegisterProjectHandler

func RegisterProjectHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterProjectHandler registers the http handlers for service Project to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterProjectHandlerClient

func RegisterProjectHandlerClient(ctx context.Context, mux *runtime.ServeMux, client ProjectClient) error

RegisterProjectHandlerClient registers the http handlers for service Project to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "ProjectClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "ProjectClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "ProjectClient" to call the correct interceptors.

func RegisterProjectHandlerFromEndpoint

func RegisterProjectHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterProjectHandlerFromEndpoint is same as RegisterProjectHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterProjectHandlerServer

func RegisterProjectHandlerServer(ctx context.Context, mux *runtime.ServeMux, server ProjectServer) error

RegisterProjectHandlerServer registers the http handlers for service Project to "mux". UnaryRPC :call ProjectServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.

func RegisterProjectServer

func RegisterProjectServer(s *grpc.Server, srv ProjectServer)

func RegisterUserHandler

func RegisterUserHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterUserHandler registers the http handlers for service User to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterUserHandlerClient

func RegisterUserHandlerClient(ctx context.Context, mux *runtime.ServeMux, client UserClient) error

RegisterUserHandlerClient registers the http handlers for service User to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "UserClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "UserClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "UserClient" to call the correct interceptors.

func RegisterUserHandlerFromEndpoint

func RegisterUserHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterUserHandlerFromEndpoint is same as RegisterUserHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterUserHandlerServer

func RegisterUserHandlerServer(ctx context.Context, mux *runtime.ServeMux, server UserServer) error

RegisterUserHandlerServer registers the http handlers for service User to "mux". UnaryRPC :call UserServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.

func RegisterUserServer

func RegisterUserServer(s *grpc.Server, srv UserServer)

Types

type ActiveInfo

type ActiveInfo struct {
	User        *UserInfo    `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
	ActiveType  ActiveType   `protobuf:"varint,2,opt,name=activeType,proto3,enum=grapery.api.ActiveType" json:"activeType,omitempty"`
	ItemInfo    *ItemInfo    `protobuf:"bytes,3,opt,name=itemInfo,proto3" json:"itemInfo,omitempty"`
	ProjectInfo *ProjectInfo `protobuf:"bytes,4,opt,name=projectInfo,proto3" json:"projectInfo,omitempty"`
	GroupInfo   *GroupInfo   `protobuf:"bytes,5,opt,name=groupInfo,proto3" json:"groupInfo,omitempty"`
	// contains filtered or unexported fields
}

func (*ActiveInfo) Descriptor deprecated

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

Deprecated: Use ActiveInfo.ProtoReflect.Descriptor instead.

func (*ActiveInfo) GetActiveType

func (x *ActiveInfo) GetActiveType() ActiveType

func (*ActiveInfo) GetGroupInfo

func (x *ActiveInfo) GetGroupInfo() *GroupInfo

func (*ActiveInfo) GetItemInfo

func (x *ActiveInfo) GetItemInfo() *ItemInfo

func (*ActiveInfo) GetProjectInfo

func (x *ActiveInfo) GetProjectInfo() *ProjectInfo

func (*ActiveInfo) GetUser

func (x *ActiveInfo) GetUser() *UserInfo

func (*ActiveInfo) ProtoMessage

func (*ActiveInfo) ProtoMessage()

func (*ActiveInfo) ProtoReflect

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

func (*ActiveInfo) Reset

func (x *ActiveInfo) Reset()

func (*ActiveInfo) String

func (x *ActiveInfo) String() string

func (*ActiveInfo) Validate

func (m *ActiveInfo) Validate() error

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

type ActiveInfoValidationError

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

ActiveInfoValidationError is the validation error returned by ActiveInfo.Validate if the designated constraints aren't met.

func (ActiveInfoValidationError) Cause

func (e ActiveInfoValidationError) Cause() error

Cause function returns cause value.

func (ActiveInfoValidationError) Error

Error satisfies the builtin error interface

func (ActiveInfoValidationError) ErrorName

func (e ActiveInfoValidationError) ErrorName() string

ErrorName returns error name.

func (ActiveInfoValidationError) Field

Field function returns field value.

func (ActiveInfoValidationError) Key

Key function returns key value.

func (ActiveInfoValidationError) Reason

func (e ActiveInfoValidationError) Reason() string

Reason function returns reason value.

type ActiveType

type ActiveType int32
const (
	ActiveType_AllActive ActiveType = 0
	ActiveType_Like      ActiveType = 1
	ActiveType_Share     ActiveType = 2
	ActiveType_Comment   ActiveType = 3
	ActiveType_Collect   ActiveType = 4
	ActiveType_DisAgree  ActiveType = 5
)

func (ActiveType) Descriptor

func (ActiveType) Descriptor() protoreflect.EnumDescriptor

func (ActiveType) Enum

func (x ActiveType) Enum() *ActiveType

func (ActiveType) EnumDescriptor deprecated

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

Deprecated: Use ActiveType.Descriptor instead.

func (ActiveType) Number

func (x ActiveType) Number() protoreflect.EnumNumber

func (ActiveType) String

func (x ActiveType) String() string

func (ActiveType) Type

type AuthClient

type AuthClient interface {
	Login(ctx context.Context, in *LoginRequest, opts ...grpc.CallOption) (*LoginResponse, error)
	Logout(ctx context.Context, in *LogoutRequest, opts ...grpc.CallOption) (*LogoutResponse, error)
	Register(ctx context.Context, in *RegisterRequest, opts ...grpc.CallOption) (*RegisterResponse, error)
	ResetPwd(ctx context.Context, in *ResetPasswordRequest, opts ...grpc.CallOption) (*ResetPasswordResponse, error)
}

AuthClient is the client API for Auth service.

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

func NewAuthClient

func NewAuthClient(cc grpc.ClientConnInterface) AuthClient

type AuthServer

AuthServer is the server API for Auth service.

type AuthType

type AuthType int32
const (
	AuthType_NotSupport AuthType = 0
	AuthType_WithPhone  AuthType = 1
	AuthType_WithEmail  AuthType = 2
)

func (AuthType) Descriptor

func (AuthType) Descriptor() protoreflect.EnumDescriptor

func (AuthType) Enum

func (x AuthType) Enum() *AuthType

func (AuthType) EnumDescriptor deprecated

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

Deprecated: Use AuthType.Descriptor instead.

func (AuthType) Number

func (x AuthType) Number() protoreflect.EnumNumber

func (AuthType) String

func (x AuthType) String() string

func (AuthType) Type

type ConfirmRequest

type ConfirmRequest struct {
	LoginType AuthType `protobuf:"varint,1,opt,name=login_type,json=loginType,proto3,enum=grapery.api.AuthType" json:"login_type,omitempty"`
	Account   string   `protobuf:"bytes,2,opt,name=account,proto3" json:"account,omitempty"`
	// contains filtered or unexported fields
}

func (*ConfirmRequest) Descriptor deprecated

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

Deprecated: Use ConfirmRequest.ProtoReflect.Descriptor instead.

func (*ConfirmRequest) GetAccount

func (x *ConfirmRequest) GetAccount() string

func (*ConfirmRequest) GetLoginType

func (x *ConfirmRequest) GetLoginType() AuthType

func (*ConfirmRequest) ProtoMessage

func (*ConfirmRequest) ProtoMessage()

func (*ConfirmRequest) ProtoReflect

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

func (*ConfirmRequest) Reset

func (x *ConfirmRequest) Reset()

func (*ConfirmRequest) String

func (x *ConfirmRequest) String() string

func (*ConfirmRequest) Validate

func (m *ConfirmRequest) Validate() error

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

type ConfirmRequestValidationError

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

ConfirmRequestValidationError is the validation error returned by ConfirmRequest.Validate if the designated constraints aren't met.

func (ConfirmRequestValidationError) Cause

Cause function returns cause value.

func (ConfirmRequestValidationError) Error

Error satisfies the builtin error interface

func (ConfirmRequestValidationError) ErrorName

func (e ConfirmRequestValidationError) ErrorName() string

ErrorName returns error name.

func (ConfirmRequestValidationError) Field

Field function returns field value.

func (ConfirmRequestValidationError) Key

Key function returns key value.

func (ConfirmRequestValidationError) Reason

Reason function returns reason value.

type ConfirmResponse

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

func (*ConfirmResponse) Descriptor deprecated

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

Deprecated: Use ConfirmResponse.ProtoReflect.Descriptor instead.

func (*ConfirmResponse) ProtoMessage

func (*ConfirmResponse) ProtoMessage()

func (*ConfirmResponse) ProtoReflect

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

func (*ConfirmResponse) Reset

func (x *ConfirmResponse) Reset()

func (*ConfirmResponse) String

func (x *ConfirmResponse) String() string

func (*ConfirmResponse) Validate

func (m *ConfirmResponse) Validate() error

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

type ConfirmResponseValidationError

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

ConfirmResponseValidationError is the validation error returned by ConfirmResponse.Validate if the designated constraints aren't met.

func (ConfirmResponseValidationError) Cause

Cause function returns cause value.

func (ConfirmResponseValidationError) Error

Error satisfies the builtin error interface

func (ConfirmResponseValidationError) ErrorName

func (e ConfirmResponseValidationError) ErrorName() string

ErrorName returns error name.

func (ConfirmResponseValidationError) Field

Field function returns field value.

func (ConfirmResponseValidationError) Key

Key function returns key value.

func (ConfirmResponseValidationError) Reason

Reason function returns reason value.

type CreateGroupReqeust

type CreateGroupReqeust struct {
	UserId uint64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Name   string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateGroupReqeust) Descriptor deprecated

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

Deprecated: Use CreateGroupReqeust.ProtoReflect.Descriptor instead.

func (*CreateGroupReqeust) GetName

func (x *CreateGroupReqeust) GetName() string

func (*CreateGroupReqeust) GetUserId

func (x *CreateGroupReqeust) GetUserId() uint64

func (*CreateGroupReqeust) ProtoMessage

func (*CreateGroupReqeust) ProtoMessage()

func (*CreateGroupReqeust) ProtoReflect

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

func (*CreateGroupReqeust) Reset

func (x *CreateGroupReqeust) Reset()

func (*CreateGroupReqeust) String

func (x *CreateGroupReqeust) String() string

func (*CreateGroupReqeust) Validate

func (m *CreateGroupReqeust) Validate() error

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

type CreateGroupReqeustValidationError

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

CreateGroupReqeustValidationError is the validation error returned by CreateGroupReqeust.Validate if the designated constraints aren't met.

func (CreateGroupReqeustValidationError) Cause

Cause function returns cause value.

func (CreateGroupReqeustValidationError) Error

Error satisfies the builtin error interface

func (CreateGroupReqeustValidationError) ErrorName

ErrorName returns error name.

func (CreateGroupReqeustValidationError) Field

Field function returns field value.

func (CreateGroupReqeustValidationError) Key

Key function returns key value.

func (CreateGroupReqeustValidationError) Reason

Reason function returns reason value.

type CreateGroupResponse

type CreateGroupResponse struct {
	Info *GroupInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateGroupResponse) Descriptor deprecated

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

Deprecated: Use CreateGroupResponse.ProtoReflect.Descriptor instead.

func (*CreateGroupResponse) GetInfo

func (x *CreateGroupResponse) GetInfo() *GroupInfo

func (*CreateGroupResponse) ProtoMessage

func (*CreateGroupResponse) ProtoMessage()

func (*CreateGroupResponse) ProtoReflect

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

func (*CreateGroupResponse) Reset

func (x *CreateGroupResponse) Reset()

func (*CreateGroupResponse) String

func (x *CreateGroupResponse) String() string

func (*CreateGroupResponse) Validate

func (m *CreateGroupResponse) Validate() error

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

type CreateGroupResponseValidationError

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

CreateGroupResponseValidationError is the validation error returned by CreateGroupResponse.Validate if the designated constraints aren't met.

func (CreateGroupResponseValidationError) Cause

Cause function returns cause value.

func (CreateGroupResponseValidationError) Error

Error satisfies the builtin error interface

func (CreateGroupResponseValidationError) ErrorName

ErrorName returns error name.

func (CreateGroupResponseValidationError) Field

Field function returns field value.

func (CreateGroupResponseValidationError) Key

Key function returns key value.

func (CreateGroupResponseValidationError) Reason

Reason function returns reason value.

type CreateItemRequest

type CreateItemRequest struct {
	GroupId   uint64     `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	ProjectId uint64     `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	Name      string     `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	Atype     ActiveType `protobuf:"varint,4,opt,name=atype,proto3,enum=grapery.api.ActiveType" json:"atype,omitempty"`
	UserId    uint64     `protobuf:"varint,5,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateItemRequest) Descriptor deprecated

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

Deprecated: Use CreateItemRequest.ProtoReflect.Descriptor instead.

func (*CreateItemRequest) GetAtype

func (x *CreateItemRequest) GetAtype() ActiveType

func (*CreateItemRequest) GetGroupId

func (x *CreateItemRequest) GetGroupId() uint64

func (*CreateItemRequest) GetName

func (x *CreateItemRequest) GetName() string

func (*CreateItemRequest) GetProjectId

func (x *CreateItemRequest) GetProjectId() uint64

func (*CreateItemRequest) GetUserId

func (x *CreateItemRequest) GetUserId() uint64

func (*CreateItemRequest) ProtoMessage

func (*CreateItemRequest) ProtoMessage()

func (*CreateItemRequest) ProtoReflect

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

func (*CreateItemRequest) Reset

func (x *CreateItemRequest) Reset()

func (*CreateItemRequest) String

func (x *CreateItemRequest) String() string

func (*CreateItemRequest) Validate

func (m *CreateItemRequest) Validate() error

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

type CreateItemRequestValidationError

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

CreateItemRequestValidationError is the validation error returned by CreateItemRequest.Validate if the designated constraints aren't met.

func (CreateItemRequestValidationError) Cause

Cause function returns cause value.

func (CreateItemRequestValidationError) Error

Error satisfies the builtin error interface

func (CreateItemRequestValidationError) ErrorName

ErrorName returns error name.

func (CreateItemRequestValidationError) Field

Field function returns field value.

func (CreateItemRequestValidationError) Key

Key function returns key value.

func (CreateItemRequestValidationError) Reason

Reason function returns reason value.

type CreateItemResponse

type CreateItemResponse struct {
	Info *ItemInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateItemResponse) Descriptor deprecated

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

Deprecated: Use CreateItemResponse.ProtoReflect.Descriptor instead.

func (*CreateItemResponse) GetInfo

func (x *CreateItemResponse) GetInfo() *ItemInfo

func (*CreateItemResponse) ProtoMessage

func (*CreateItemResponse) ProtoMessage()

func (*CreateItemResponse) ProtoReflect

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

func (*CreateItemResponse) Reset

func (x *CreateItemResponse) Reset()

func (*CreateItemResponse) String

func (x *CreateItemResponse) String() string

func (*CreateItemResponse) Validate

func (m *CreateItemResponse) Validate() error

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

type CreateItemResponseValidationError

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

CreateItemResponseValidationError is the validation error returned by CreateItemResponse.Validate if the designated constraints aren't met.

func (CreateItemResponseValidationError) Cause

Cause function returns cause value.

func (CreateItemResponseValidationError) Error

Error satisfies the builtin error interface

func (CreateItemResponseValidationError) ErrorName

ErrorName returns error name.

func (CreateItemResponseValidationError) Field

Field function returns field value.

func (CreateItemResponseValidationError) Key

Key function returns key value.

func (CreateItemResponseValidationError) Reason

Reason function returns reason value.

type CreateProjectRequest

type CreateProjectRequest struct {
	GroupId uint64 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	Name    string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateProjectRequest) Descriptor deprecated

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

Deprecated: Use CreateProjectRequest.ProtoReflect.Descriptor instead.

func (*CreateProjectRequest) GetGroupId

func (x *CreateProjectRequest) GetGroupId() uint64

func (*CreateProjectRequest) GetName

func (x *CreateProjectRequest) GetName() string

func (*CreateProjectRequest) ProtoMessage

func (*CreateProjectRequest) ProtoMessage()

func (*CreateProjectRequest) ProtoReflect

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

func (*CreateProjectRequest) Reset

func (x *CreateProjectRequest) Reset()

func (*CreateProjectRequest) String

func (x *CreateProjectRequest) String() string

func (*CreateProjectRequest) Validate

func (m *CreateProjectRequest) Validate() error

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

type CreateProjectRequestValidationError

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

CreateProjectRequestValidationError is the validation error returned by CreateProjectRequest.Validate if the designated constraints aren't met.

func (CreateProjectRequestValidationError) Cause

Cause function returns cause value.

func (CreateProjectRequestValidationError) Error

Error satisfies the builtin error interface

func (CreateProjectRequestValidationError) ErrorName

ErrorName returns error name.

func (CreateProjectRequestValidationError) Field

Field function returns field value.

func (CreateProjectRequestValidationError) Key

Key function returns key value.

func (CreateProjectRequestValidationError) Reason

Reason function returns reason value.

type CreateProjectResponse

type CreateProjectResponse struct {
	Info *ProjectInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateProjectResponse) Descriptor deprecated

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

Deprecated: Use CreateProjectResponse.ProtoReflect.Descriptor instead.

func (*CreateProjectResponse) GetInfo

func (x *CreateProjectResponse) GetInfo() *ProjectInfo

func (*CreateProjectResponse) ProtoMessage

func (*CreateProjectResponse) ProtoMessage()

func (*CreateProjectResponse) ProtoReflect

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

func (*CreateProjectResponse) Reset

func (x *CreateProjectResponse) Reset()

func (*CreateProjectResponse) String

func (x *CreateProjectResponse) String() string

func (*CreateProjectResponse) Validate

func (m *CreateProjectResponse) Validate() error

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

type CreateProjectResponseValidationError

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

CreateProjectResponseValidationError is the validation error returned by CreateProjectResponse.Validate if the designated constraints aren't met.

func (CreateProjectResponseValidationError) Cause

Cause function returns cause value.

func (CreateProjectResponseValidationError) Error

Error satisfies the builtin error interface

func (CreateProjectResponseValidationError) ErrorName

ErrorName returns error name.

func (CreateProjectResponseValidationError) Field

Field function returns field value.

func (CreateProjectResponseValidationError) Key

Key function returns key value.

func (CreateProjectResponseValidationError) Reason

Reason function returns reason value.

type DeleteGroupRequest

type DeleteGroupRequest struct {
	GroupId uint64 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	UserId  uint64 `protobuf:"varint,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteGroupRequest) Descriptor deprecated

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

Deprecated: Use DeleteGroupRequest.ProtoReflect.Descriptor instead.

func (*DeleteGroupRequest) GetGroupId

func (x *DeleteGroupRequest) GetGroupId() uint64

func (*DeleteGroupRequest) GetUserId

func (x *DeleteGroupRequest) GetUserId() uint64

func (*DeleteGroupRequest) ProtoMessage

func (*DeleteGroupRequest) ProtoMessage()

func (*DeleteGroupRequest) ProtoReflect

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

func (*DeleteGroupRequest) Reset

func (x *DeleteGroupRequest) Reset()

func (*DeleteGroupRequest) String

func (x *DeleteGroupRequest) String() string

func (*DeleteGroupRequest) Validate

func (m *DeleteGroupRequest) Validate() error

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

type DeleteGroupRequestValidationError

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

DeleteGroupRequestValidationError is the validation error returned by DeleteGroupRequest.Validate if the designated constraints aren't met.

func (DeleteGroupRequestValidationError) Cause

Cause function returns cause value.

func (DeleteGroupRequestValidationError) Error

Error satisfies the builtin error interface

func (DeleteGroupRequestValidationError) ErrorName

ErrorName returns error name.

func (DeleteGroupRequestValidationError) Field

Field function returns field value.

func (DeleteGroupRequestValidationError) Key

Key function returns key value.

func (DeleteGroupRequestValidationError) Reason

Reason function returns reason value.

type DeleteGroupResponse

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

func (*DeleteGroupResponse) Descriptor deprecated

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

Deprecated: Use DeleteGroupResponse.ProtoReflect.Descriptor instead.

func (*DeleteGroupResponse) ProtoMessage

func (*DeleteGroupResponse) ProtoMessage()

func (*DeleteGroupResponse) ProtoReflect

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

func (*DeleteGroupResponse) Reset

func (x *DeleteGroupResponse) Reset()

func (*DeleteGroupResponse) String

func (x *DeleteGroupResponse) String() string

func (*DeleteGroupResponse) Validate

func (m *DeleteGroupResponse) Validate() error

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

type DeleteGroupResponseValidationError

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

DeleteGroupResponseValidationError is the validation error returned by DeleteGroupResponse.Validate if the designated constraints aren't met.

func (DeleteGroupResponseValidationError) Cause

Cause function returns cause value.

func (DeleteGroupResponseValidationError) Error

Error satisfies the builtin error interface

func (DeleteGroupResponseValidationError) ErrorName

ErrorName returns error name.

func (DeleteGroupResponseValidationError) Field

Field function returns field value.

func (DeleteGroupResponseValidationError) Key

Key function returns key value.

func (DeleteGroupResponseValidationError) Reason

Reason function returns reason value.

type DeleteItemRequest

type DeleteItemRequest struct {
	GroupId   uint64 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	ProjectId uint64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	ItemId    uint64 `protobuf:"varint,3,opt,name=item_id,json=itemId,proto3" json:"item_id,omitempty"`
	UserId    uint64 `protobuf:"varint,4,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteItemRequest) Descriptor deprecated

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

Deprecated: Use DeleteItemRequest.ProtoReflect.Descriptor instead.

func (*DeleteItemRequest) GetGroupId

func (x *DeleteItemRequest) GetGroupId() uint64

func (*DeleteItemRequest) GetItemId

func (x *DeleteItemRequest) GetItemId() uint64

func (*DeleteItemRequest) GetProjectId

func (x *DeleteItemRequest) GetProjectId() uint64

func (*DeleteItemRequest) GetUserId

func (x *DeleteItemRequest) GetUserId() uint64

func (*DeleteItemRequest) ProtoMessage

func (*DeleteItemRequest) ProtoMessage()

func (*DeleteItemRequest) ProtoReflect

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

func (*DeleteItemRequest) Reset

func (x *DeleteItemRequest) Reset()

func (*DeleteItemRequest) String

func (x *DeleteItemRequest) String() string

func (*DeleteItemRequest) Validate

func (m *DeleteItemRequest) Validate() error

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

type DeleteItemRequestValidationError

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

DeleteItemRequestValidationError is the validation error returned by DeleteItemRequest.Validate if the designated constraints aren't met.

func (DeleteItemRequestValidationError) Cause

Cause function returns cause value.

func (DeleteItemRequestValidationError) Error

Error satisfies the builtin error interface

func (DeleteItemRequestValidationError) ErrorName

ErrorName returns error name.

func (DeleteItemRequestValidationError) Field

Field function returns field value.

func (DeleteItemRequestValidationError) Key

Key function returns key value.

func (DeleteItemRequestValidationError) Reason

Reason function returns reason value.

type DeleteItemResponse

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

func (*DeleteItemResponse) Descriptor deprecated

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

Deprecated: Use DeleteItemResponse.ProtoReflect.Descriptor instead.

func (*DeleteItemResponse) ProtoMessage

func (*DeleteItemResponse) ProtoMessage()

func (*DeleteItemResponse) ProtoReflect

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

func (*DeleteItemResponse) Reset

func (x *DeleteItemResponse) Reset()

func (*DeleteItemResponse) String

func (x *DeleteItemResponse) String() string

func (*DeleteItemResponse) Validate

func (m *DeleteItemResponse) Validate() error

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

type DeleteItemResponseValidationError

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

DeleteItemResponseValidationError is the validation error returned by DeleteItemResponse.Validate if the designated constraints aren't met.

func (DeleteItemResponseValidationError) Cause

Cause function returns cause value.

func (DeleteItemResponseValidationError) Error

Error satisfies the builtin error interface

func (DeleteItemResponseValidationError) ErrorName

ErrorName returns error name.

func (DeleteItemResponseValidationError) Field

Field function returns field value.

func (DeleteItemResponseValidationError) Key

Key function returns key value.

func (DeleteItemResponseValidationError) Reason

Reason function returns reason value.

type DeleteProjectRequest

type DeleteProjectRequest struct {
	GroupId   uint64 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	ProjectId uint64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	UserId    uint64 `protobuf:"varint,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteProjectRequest) Descriptor deprecated

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

Deprecated: Use DeleteProjectRequest.ProtoReflect.Descriptor instead.

func (*DeleteProjectRequest) GetGroupId

func (x *DeleteProjectRequest) GetGroupId() uint64

func (*DeleteProjectRequest) GetProjectId

func (x *DeleteProjectRequest) GetProjectId() uint64

func (*DeleteProjectRequest) GetUserId

func (x *DeleteProjectRequest) GetUserId() uint64

func (*DeleteProjectRequest) ProtoMessage

func (*DeleteProjectRequest) ProtoMessage()

func (*DeleteProjectRequest) ProtoReflect

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

func (*DeleteProjectRequest) Reset

func (x *DeleteProjectRequest) Reset()

func (*DeleteProjectRequest) String

func (x *DeleteProjectRequest) String() string

func (*DeleteProjectRequest) Validate

func (m *DeleteProjectRequest) Validate() error

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

type DeleteProjectRequestValidationError

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

DeleteProjectRequestValidationError is the validation error returned by DeleteProjectRequest.Validate if the designated constraints aren't met.

func (DeleteProjectRequestValidationError) Cause

Cause function returns cause value.

func (DeleteProjectRequestValidationError) Error

Error satisfies the builtin error interface

func (DeleteProjectRequestValidationError) ErrorName

ErrorName returns error name.

func (DeleteProjectRequestValidationError) Field

Field function returns field value.

func (DeleteProjectRequestValidationError) Key

Key function returns key value.

func (DeleteProjectRequestValidationError) Reason

Reason function returns reason value.

type DeleteProjectResponse

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

func (*DeleteProjectResponse) Descriptor deprecated

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

Deprecated: Use DeleteProjectResponse.ProtoReflect.Descriptor instead.

func (*DeleteProjectResponse) ProtoMessage

func (*DeleteProjectResponse) ProtoMessage()

func (*DeleteProjectResponse) ProtoReflect

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

func (*DeleteProjectResponse) Reset

func (x *DeleteProjectResponse) Reset()

func (*DeleteProjectResponse) String

func (x *DeleteProjectResponse) String() string

func (*DeleteProjectResponse) Validate

func (m *DeleteProjectResponse) Validate() error

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

type DeleteProjectResponseValidationError

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

DeleteProjectResponseValidationError is the validation error returned by DeleteProjectResponse.Validate if the designated constraints aren't met.

func (DeleteProjectResponseValidationError) Cause

Cause function returns cause value.

func (DeleteProjectResponseValidationError) Error

Error satisfies the builtin error interface

func (DeleteProjectResponseValidationError) ErrorName

ErrorName returns error name.

func (DeleteProjectResponseValidationError) Field

Field function returns field value.

func (DeleteProjectResponseValidationError) Key

Key function returns key value.

func (DeleteProjectResponseValidationError) Reason

Reason function returns reason value.

type ExploreProjectsRequest

type ExploreProjectsRequest struct {
	UserId  uint64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	GroupId uint64 `protobuf:"varint,2,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	Offset  uint64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
	Number  uint64 `protobuf:"varint,4,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*ExploreProjectsRequest) Descriptor deprecated

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

Deprecated: Use ExploreProjectsRequest.ProtoReflect.Descriptor instead.

func (*ExploreProjectsRequest) GetGroupId

func (x *ExploreProjectsRequest) GetGroupId() uint64

func (*ExploreProjectsRequest) GetNumber

func (x *ExploreProjectsRequest) GetNumber() uint64

func (*ExploreProjectsRequest) GetOffset

func (x *ExploreProjectsRequest) GetOffset() uint64

func (*ExploreProjectsRequest) GetUserId

func (x *ExploreProjectsRequest) GetUserId() uint64

func (*ExploreProjectsRequest) ProtoMessage

func (*ExploreProjectsRequest) ProtoMessage()

func (*ExploreProjectsRequest) ProtoReflect

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

func (*ExploreProjectsRequest) Reset

func (x *ExploreProjectsRequest) Reset()

func (*ExploreProjectsRequest) String

func (x *ExploreProjectsRequest) String() string

func (*ExploreProjectsRequest) Validate

func (m *ExploreProjectsRequest) Validate() error

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

type ExploreProjectsRequestValidationError

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

ExploreProjectsRequestValidationError is the validation error returned by ExploreProjectsRequest.Validate if the designated constraints aren't met.

func (ExploreProjectsRequestValidationError) Cause

Cause function returns cause value.

func (ExploreProjectsRequestValidationError) Error

Error satisfies the builtin error interface

func (ExploreProjectsRequestValidationError) ErrorName

ErrorName returns error name.

func (ExploreProjectsRequestValidationError) Field

Field function returns field value.

func (ExploreProjectsRequestValidationError) Key

Key function returns key value.

func (ExploreProjectsRequestValidationError) Reason

Reason function returns reason value.

type ExploreProjectsResponse

type ExploreProjectsResponse struct {
	UserId uint64         `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	List   []*ProjectInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list,omitempty"`
	Offset uint64         `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
	Number uint64         `protobuf:"varint,4,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*ExploreProjectsResponse) Descriptor deprecated

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

Deprecated: Use ExploreProjectsResponse.ProtoReflect.Descriptor instead.

func (*ExploreProjectsResponse) GetList

func (x *ExploreProjectsResponse) GetList() []*ProjectInfo

func (*ExploreProjectsResponse) GetNumber

func (x *ExploreProjectsResponse) GetNumber() uint64

func (*ExploreProjectsResponse) GetOffset

func (x *ExploreProjectsResponse) GetOffset() uint64

func (*ExploreProjectsResponse) GetUserId

func (x *ExploreProjectsResponse) GetUserId() uint64

func (*ExploreProjectsResponse) ProtoMessage

func (*ExploreProjectsResponse) ProtoMessage()

func (*ExploreProjectsResponse) ProtoReflect

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

func (*ExploreProjectsResponse) Reset

func (x *ExploreProjectsResponse) Reset()

func (*ExploreProjectsResponse) String

func (x *ExploreProjectsResponse) String() string

func (*ExploreProjectsResponse) Validate

func (m *ExploreProjectsResponse) Validate() error

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

type ExploreProjectsResponseValidationError

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

ExploreProjectsResponseValidationError is the validation error returned by ExploreProjectsResponse.Validate if the designated constraints aren't met.

func (ExploreProjectsResponseValidationError) Cause

Cause function returns cause value.

func (ExploreProjectsResponseValidationError) Error

Error satisfies the builtin error interface

func (ExploreProjectsResponseValidationError) ErrorName

ErrorName returns error name.

func (ExploreProjectsResponseValidationError) Field

Field function returns field value.

func (ExploreProjectsResponseValidationError) Key

Key function returns key value.

func (ExploreProjectsResponseValidationError) Reason

Reason function returns reason value.

type FetchGroupMembersRequest

type FetchGroupMembersRequest struct {
	GroupId uint64 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	Offset  uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
	Number  uint64 `protobuf:"varint,3,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*FetchGroupMembersRequest) Descriptor deprecated

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

Deprecated: Use FetchGroupMembersRequest.ProtoReflect.Descriptor instead.

func (*FetchGroupMembersRequest) GetGroupId

func (x *FetchGroupMembersRequest) GetGroupId() uint64

func (*FetchGroupMembersRequest) GetNumber

func (x *FetchGroupMembersRequest) GetNumber() uint64

func (*FetchGroupMembersRequest) GetOffset

func (x *FetchGroupMembersRequest) GetOffset() uint64

func (*FetchGroupMembersRequest) ProtoMessage

func (*FetchGroupMembersRequest) ProtoMessage()

func (*FetchGroupMembersRequest) ProtoReflect

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

func (*FetchGroupMembersRequest) Reset

func (x *FetchGroupMembersRequest) Reset()

func (*FetchGroupMembersRequest) String

func (x *FetchGroupMembersRequest) String() string

func (*FetchGroupMembersRequest) Validate

func (m *FetchGroupMembersRequest) Validate() error

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

type FetchGroupMembersRequestValidationError

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

FetchGroupMembersRequestValidationError is the validation error returned by FetchGroupMembersRequest.Validate if the designated constraints aren't met.

func (FetchGroupMembersRequestValidationError) Cause

Cause function returns cause value.

func (FetchGroupMembersRequestValidationError) Error

Error satisfies the builtin error interface

func (FetchGroupMembersRequestValidationError) ErrorName

ErrorName returns error name.

func (FetchGroupMembersRequestValidationError) Field

Field function returns field value.

func (FetchGroupMembersRequestValidationError) Key

Key function returns key value.

func (FetchGroupMembersRequestValidationError) Reason

Reason function returns reason value.

type FetchGroupMembersResponse

type FetchGroupMembersResponse struct {
	List   []*UserInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
	Offset uint64      `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
	Total  uint64      `protobuf:"varint,3,opt,name=total,proto3" json:"total,omitempty"`
	// contains filtered or unexported fields
}

func (*FetchGroupMembersResponse) Descriptor deprecated

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

Deprecated: Use FetchGroupMembersResponse.ProtoReflect.Descriptor instead.

func (*FetchGroupMembersResponse) GetList

func (x *FetchGroupMembersResponse) GetList() []*UserInfo

func (*FetchGroupMembersResponse) GetOffset

func (x *FetchGroupMembersResponse) GetOffset() uint64

func (*FetchGroupMembersResponse) GetTotal

func (x *FetchGroupMembersResponse) GetTotal() uint64

func (*FetchGroupMembersResponse) ProtoMessage

func (*FetchGroupMembersResponse) ProtoMessage()

func (*FetchGroupMembersResponse) ProtoReflect

func (*FetchGroupMembersResponse) Reset

func (x *FetchGroupMembersResponse) Reset()

func (*FetchGroupMembersResponse) String

func (x *FetchGroupMembersResponse) String() string

func (*FetchGroupMembersResponse) Validate

func (m *FetchGroupMembersResponse) Validate() error

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

type FetchGroupMembersResponseValidationError

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

FetchGroupMembersResponseValidationError is the validation error returned by FetchGroupMembersResponse.Validate if the designated constraints aren't met.

func (FetchGroupMembersResponseValidationError) Cause

Cause function returns cause value.

func (FetchGroupMembersResponseValidationError) Error

Error satisfies the builtin error interface

func (FetchGroupMembersResponseValidationError) ErrorName

ErrorName returns error name.

func (FetchGroupMembersResponseValidationError) Field

Field function returns field value.

func (FetchGroupMembersResponseValidationError) Key

Key function returns key value.

func (FetchGroupMembersResponseValidationError) Reason

Reason function returns reason value.

type FetchGroupProjectsReqeust

type FetchGroupProjectsReqeust struct {
	GroupId uint64 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	Offset  uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
	Number  uint64 `protobuf:"varint,3,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*FetchGroupProjectsReqeust) Descriptor deprecated

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

Deprecated: Use FetchGroupProjectsReqeust.ProtoReflect.Descriptor instead.

func (*FetchGroupProjectsReqeust) GetGroupId

func (x *FetchGroupProjectsReqeust) GetGroupId() uint64

func (*FetchGroupProjectsReqeust) GetNumber

func (x *FetchGroupProjectsReqeust) GetNumber() uint64

func (*FetchGroupProjectsReqeust) GetOffset

func (x *FetchGroupProjectsReqeust) GetOffset() uint64

func (*FetchGroupProjectsReqeust) ProtoMessage

func (*FetchGroupProjectsReqeust) ProtoMessage()

func (*FetchGroupProjectsReqeust) ProtoReflect

func (*FetchGroupProjectsReqeust) Reset

func (x *FetchGroupProjectsReqeust) Reset()

func (*FetchGroupProjectsReqeust) String

func (x *FetchGroupProjectsReqeust) String() string

func (*FetchGroupProjectsReqeust) Validate

func (m *FetchGroupProjectsReqeust) Validate() error

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

type FetchGroupProjectsReqeustValidationError

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

FetchGroupProjectsReqeustValidationError is the validation error returned by FetchGroupProjectsReqeust.Validate if the designated constraints aren't met.

func (FetchGroupProjectsReqeustValidationError) Cause

Cause function returns cause value.

func (FetchGroupProjectsReqeustValidationError) Error

Error satisfies the builtin error interface

func (FetchGroupProjectsReqeustValidationError) ErrorName

ErrorName returns error name.

func (FetchGroupProjectsReqeustValidationError) Field

Field function returns field value.

func (FetchGroupProjectsReqeustValidationError) Key

Key function returns key value.

func (FetchGroupProjectsReqeustValidationError) Reason

Reason function returns reason value.

type FetchGroupProjectsResponse

type FetchGroupProjectsResponse struct {
	List   []*ProjectInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
	Offset uint64         `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
	Number uint64         `protobuf:"varint,3,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*FetchGroupProjectsResponse) Descriptor deprecated

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

Deprecated: Use FetchGroupProjectsResponse.ProtoReflect.Descriptor instead.

func (*FetchGroupProjectsResponse) GetList

func (x *FetchGroupProjectsResponse) GetList() []*ProjectInfo

func (*FetchGroupProjectsResponse) GetNumber

func (x *FetchGroupProjectsResponse) GetNumber() uint64

func (*FetchGroupProjectsResponse) GetOffset

func (x *FetchGroupProjectsResponse) GetOffset() uint64

func (*FetchGroupProjectsResponse) ProtoMessage

func (*FetchGroupProjectsResponse) ProtoMessage()

func (*FetchGroupProjectsResponse) ProtoReflect

func (*FetchGroupProjectsResponse) Reset

func (x *FetchGroupProjectsResponse) Reset()

func (*FetchGroupProjectsResponse) String

func (x *FetchGroupProjectsResponse) String() string

func (*FetchGroupProjectsResponse) Validate

func (m *FetchGroupProjectsResponse) Validate() error

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

type FetchGroupProjectsResponseValidationError

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

FetchGroupProjectsResponseValidationError is the validation error returned by FetchGroupProjectsResponse.Validate if the designated constraints aren't met.

func (FetchGroupProjectsResponseValidationError) Cause

Cause function returns cause value.

func (FetchGroupProjectsResponseValidationError) Error

Error satisfies the builtin error interface

func (FetchGroupProjectsResponseValidationError) ErrorName

ErrorName returns error name.

func (FetchGroupProjectsResponseValidationError) Field

Field function returns field value.

func (FetchGroupProjectsResponseValidationError) Key

Key function returns key value.

func (FetchGroupProjectsResponseValidationError) Reason

Reason function returns reason value.

type FetchUserActivesRequest

type FetchUserActivesRequest struct {
	UserId uint64     `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Atype  ActiveType `protobuf:"varint,2,opt,name=atype,proto3,enum=grapery.api.ActiveType" json:"atype,omitempty"`
	// contains filtered or unexported fields
}

func (*FetchUserActivesRequest) Descriptor deprecated

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

Deprecated: Use FetchUserActivesRequest.ProtoReflect.Descriptor instead.

func (*FetchUserActivesRequest) GetAtype

func (x *FetchUserActivesRequest) GetAtype() ActiveType

func (*FetchUserActivesRequest) GetUserId

func (x *FetchUserActivesRequest) GetUserId() uint64

func (*FetchUserActivesRequest) ProtoMessage

func (*FetchUserActivesRequest) ProtoMessage()

func (*FetchUserActivesRequest) ProtoReflect

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

func (*FetchUserActivesRequest) Reset

func (x *FetchUserActivesRequest) Reset()

func (*FetchUserActivesRequest) String

func (x *FetchUserActivesRequest) String() string

func (*FetchUserActivesRequest) Validate

func (m *FetchUserActivesRequest) Validate() error

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

type FetchUserActivesRequestValidationError

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

FetchUserActivesRequestValidationError is the validation error returned by FetchUserActivesRequest.Validate if the designated constraints aren't met.

func (FetchUserActivesRequestValidationError) Cause

Cause function returns cause value.

func (FetchUserActivesRequestValidationError) Error

Error satisfies the builtin error interface

func (FetchUserActivesRequestValidationError) ErrorName

ErrorName returns error name.

func (FetchUserActivesRequestValidationError) Field

Field function returns field value.

func (FetchUserActivesRequestValidationError) Key

Key function returns key value.

func (FetchUserActivesRequestValidationError) Reason

Reason function returns reason value.

type FetchUserActivesResponse

type FetchUserActivesResponse struct {
	List []*ActiveInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
	// contains filtered or unexported fields
}

func (*FetchUserActivesResponse) Descriptor deprecated

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

Deprecated: Use FetchUserActivesResponse.ProtoReflect.Descriptor instead.

func (*FetchUserActivesResponse) GetList

func (x *FetchUserActivesResponse) GetList() []*ActiveInfo

func (*FetchUserActivesResponse) ProtoMessage

func (*FetchUserActivesResponse) ProtoMessage()

func (*FetchUserActivesResponse) ProtoReflect

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

func (*FetchUserActivesResponse) Reset

func (x *FetchUserActivesResponse) Reset()

func (*FetchUserActivesResponse) String

func (x *FetchUserActivesResponse) String() string

func (*FetchUserActivesResponse) Validate

func (m *FetchUserActivesResponse) Validate() error

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

type FetchUserActivesResponseValidationError

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

FetchUserActivesResponseValidationError is the validation error returned by FetchUserActivesResponse.Validate if the designated constraints aren't met.

func (FetchUserActivesResponseValidationError) Cause

Cause function returns cause value.

func (FetchUserActivesResponseValidationError) Error

Error satisfies the builtin error interface

func (FetchUserActivesResponseValidationError) ErrorName

ErrorName returns error name.

func (FetchUserActivesResponseValidationError) Field

Field function returns field value.

func (FetchUserActivesResponseValidationError) Key

Key function returns key value.

func (FetchUserActivesResponseValidationError) Reason

Reason function returns reason value.

type GenderType

type GenderType int32
const (
	// 不公开性别
	GenderType_None   GenderType = 0
	GenderType_Man    GenderType = 1
	GenderType_Women  GenderType = 2
	GenderType_Double GenderType = 3
)

func (GenderType) Descriptor

func (GenderType) Descriptor() protoreflect.EnumDescriptor

func (GenderType) Enum

func (x GenderType) Enum() *GenderType

func (GenderType) EnumDescriptor deprecated

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

Deprecated: Use GenderType.Descriptor instead.

func (GenderType) Number

func (x GenderType) Number() protoreflect.EnumNumber

func (GenderType) String

func (x GenderType) String() string

func (GenderType) Type

type GetGroupActivesRequest

type GetGroupActivesRequest struct {
	GroupId uint64     `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	Atype   ActiveType `protobuf:"varint,2,opt,name=atype,proto3,enum=grapery.api.ActiveType" json:"atype,omitempty"`
	Offset  uint64     `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
	Number  uint64     `protobuf:"varint,4,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*GetGroupActivesRequest) Descriptor deprecated

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

Deprecated: Use GetGroupActivesRequest.ProtoReflect.Descriptor instead.

func (*GetGroupActivesRequest) GetAtype

func (x *GetGroupActivesRequest) GetAtype() ActiveType

func (*GetGroupActivesRequest) GetGroupId

func (x *GetGroupActivesRequest) GetGroupId() uint64

func (*GetGroupActivesRequest) GetNumber

func (x *GetGroupActivesRequest) GetNumber() uint64

func (*GetGroupActivesRequest) GetOffset

func (x *GetGroupActivesRequest) GetOffset() uint64

func (*GetGroupActivesRequest) ProtoMessage

func (*GetGroupActivesRequest) ProtoMessage()

func (*GetGroupActivesRequest) ProtoReflect

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

func (*GetGroupActivesRequest) Reset

func (x *GetGroupActivesRequest) Reset()

func (*GetGroupActivesRequest) String

func (x *GetGroupActivesRequest) String() string

func (*GetGroupActivesRequest) Validate

func (m *GetGroupActivesRequest) Validate() error

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

type GetGroupActivesRequestValidationError

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

GetGroupActivesRequestValidationError is the validation error returned by GetGroupActivesRequest.Validate if the designated constraints aren't met.

func (GetGroupActivesRequestValidationError) Cause

Cause function returns cause value.

func (GetGroupActivesRequestValidationError) Error

Error satisfies the builtin error interface

func (GetGroupActivesRequestValidationError) ErrorName

ErrorName returns error name.

func (GetGroupActivesRequestValidationError) Field

Field function returns field value.

func (GetGroupActivesRequestValidationError) Key

Key function returns key value.

func (GetGroupActivesRequestValidationError) Reason

Reason function returns reason value.

type GetGroupActivesResponse

type GetGroupActivesResponse struct {
	List   []*ActiveInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
	Offset uint64        `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
	Number uint64        `protobuf:"varint,3,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*GetGroupActivesResponse) Descriptor deprecated

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

Deprecated: Use GetGroupActivesResponse.ProtoReflect.Descriptor instead.

func (*GetGroupActivesResponse) GetList

func (x *GetGroupActivesResponse) GetList() []*ActiveInfo

func (*GetGroupActivesResponse) GetNumber

func (x *GetGroupActivesResponse) GetNumber() uint64

func (*GetGroupActivesResponse) GetOffset

func (x *GetGroupActivesResponse) GetOffset() uint64

func (*GetGroupActivesResponse) ProtoMessage

func (*GetGroupActivesResponse) ProtoMessage()

func (*GetGroupActivesResponse) ProtoReflect

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

func (*GetGroupActivesResponse) Reset

func (x *GetGroupActivesResponse) Reset()

func (*GetGroupActivesResponse) String

func (x *GetGroupActivesResponse) String() string

func (*GetGroupActivesResponse) Validate

func (m *GetGroupActivesResponse) Validate() error

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

type GetGroupActivesResponseValidationError

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

GetGroupActivesResponseValidationError is the validation error returned by GetGroupActivesResponse.Validate if the designated constraints aren't met.

func (GetGroupActivesResponseValidationError) Cause

Cause function returns cause value.

func (GetGroupActivesResponseValidationError) Error

Error satisfies the builtin error interface

func (GetGroupActivesResponseValidationError) ErrorName

ErrorName returns error name.

func (GetGroupActivesResponseValidationError) Field

Field function returns field value.

func (GetGroupActivesResponseValidationError) Key

Key function returns key value.

func (GetGroupActivesResponseValidationError) Reason

Reason function returns reason value.

type GetGroupItemsRequest

type GetGroupItemsRequest struct {
	GroupId uint64 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	UserId  uint64 `protobuf:"varint,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Offset  uint64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"`
	Number  uint64 `protobuf:"varint,5,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*GetGroupItemsRequest) Descriptor deprecated

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

Deprecated: Use GetGroupItemsRequest.ProtoReflect.Descriptor instead.

func (*GetGroupItemsRequest) GetGroupId

func (x *GetGroupItemsRequest) GetGroupId() uint64

func (*GetGroupItemsRequest) GetNumber

func (x *GetGroupItemsRequest) GetNumber() uint64

func (*GetGroupItemsRequest) GetOffset

func (x *GetGroupItemsRequest) GetOffset() uint64

func (*GetGroupItemsRequest) GetUserId

func (x *GetGroupItemsRequest) GetUserId() uint64

func (*GetGroupItemsRequest) ProtoMessage

func (*GetGroupItemsRequest) ProtoMessage()

func (*GetGroupItemsRequest) ProtoReflect

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

func (*GetGroupItemsRequest) Reset

func (x *GetGroupItemsRequest) Reset()

func (*GetGroupItemsRequest) String

func (x *GetGroupItemsRequest) String() string

func (*GetGroupItemsRequest) Validate

func (m *GetGroupItemsRequest) Validate() error

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

type GetGroupItemsRequestValidationError

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

GetGroupItemsRequestValidationError is the validation error returned by GetGroupItemsRequest.Validate if the designated constraints aren't met.

func (GetGroupItemsRequestValidationError) Cause

Cause function returns cause value.

func (GetGroupItemsRequestValidationError) Error

Error satisfies the builtin error interface

func (GetGroupItemsRequestValidationError) ErrorName

ErrorName returns error name.

func (GetGroupItemsRequestValidationError) Field

Field function returns field value.

func (GetGroupItemsRequestValidationError) Key

Key function returns key value.

func (GetGroupItemsRequestValidationError) Reason

Reason function returns reason value.

type GetGroupItemsResponse

type GetGroupItemsResponse struct {
	List    []*ItemInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
	GroupId uint64      `protobuf:"varint,2,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	UserId  uint64      `protobuf:"varint,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Offset  uint64      `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"`
	Number  uint64      `protobuf:"varint,5,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*GetGroupItemsResponse) Descriptor deprecated

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

Deprecated: Use GetGroupItemsResponse.ProtoReflect.Descriptor instead.

func (*GetGroupItemsResponse) GetGroupId

func (x *GetGroupItemsResponse) GetGroupId() uint64

func (*GetGroupItemsResponse) GetList

func (x *GetGroupItemsResponse) GetList() []*ItemInfo

func (*GetGroupItemsResponse) GetNumber

func (x *GetGroupItemsResponse) GetNumber() uint64

func (*GetGroupItemsResponse) GetOffset

func (x *GetGroupItemsResponse) GetOffset() uint64

func (*GetGroupItemsResponse) GetUserId

func (x *GetGroupItemsResponse) GetUserId() uint64

func (*GetGroupItemsResponse) ProtoMessage

func (*GetGroupItemsResponse) ProtoMessage()

func (*GetGroupItemsResponse) ProtoReflect

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

func (*GetGroupItemsResponse) Reset

func (x *GetGroupItemsResponse) Reset()

func (*GetGroupItemsResponse) String

func (x *GetGroupItemsResponse) String() string

func (*GetGroupItemsResponse) Validate

func (m *GetGroupItemsResponse) Validate() error

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

type GetGroupItemsResponseValidationError

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

GetGroupItemsResponseValidationError is the validation error returned by GetGroupItemsResponse.Validate if the designated constraints aren't met.

func (GetGroupItemsResponseValidationError) Cause

Cause function returns cause value.

func (GetGroupItemsResponseValidationError) Error

Error satisfies the builtin error interface

func (GetGroupItemsResponseValidationError) ErrorName

ErrorName returns error name.

func (GetGroupItemsResponseValidationError) Field

Field function returns field value.

func (GetGroupItemsResponseValidationError) Key

Key function returns key value.

func (GetGroupItemsResponseValidationError) Reason

Reason function returns reason value.

type GetGroupReqeust

type GetGroupReqeust struct {
	GroupId uint64 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	UserId  uint64 `protobuf:"varint,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Name    string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*GetGroupReqeust) Descriptor deprecated

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

Deprecated: Use GetGroupReqeust.ProtoReflect.Descriptor instead.

func (*GetGroupReqeust) GetGroupId

func (x *GetGroupReqeust) GetGroupId() uint64

func (*GetGroupReqeust) GetName

func (x *GetGroupReqeust) GetName() string

func (*GetGroupReqeust) GetUserId

func (x *GetGroupReqeust) GetUserId() uint64

func (*GetGroupReqeust) ProtoMessage

func (*GetGroupReqeust) ProtoMessage()

func (*GetGroupReqeust) ProtoReflect

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

func (*GetGroupReqeust) Reset

func (x *GetGroupReqeust) Reset()

func (*GetGroupReqeust) String

func (x *GetGroupReqeust) String() string

func (*GetGroupReqeust) Validate

func (m *GetGroupReqeust) Validate() error

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

type GetGroupReqeustValidationError

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

GetGroupReqeustValidationError is the validation error returned by GetGroupReqeust.Validate if the designated constraints aren't met.

func (GetGroupReqeustValidationError) Cause

Cause function returns cause value.

func (GetGroupReqeustValidationError) Error

Error satisfies the builtin error interface

func (GetGroupReqeustValidationError) ErrorName

func (e GetGroupReqeustValidationError) ErrorName() string

ErrorName returns error name.

func (GetGroupReqeustValidationError) Field

Field function returns field value.

func (GetGroupReqeustValidationError) Key

Key function returns key value.

func (GetGroupReqeustValidationError) Reason

Reason function returns reason value.

type GetGroupResponse

type GetGroupResponse struct {
	Info *GroupInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	// contains filtered or unexported fields
}

func (*GetGroupResponse) Descriptor deprecated

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

Deprecated: Use GetGroupResponse.ProtoReflect.Descriptor instead.

func (*GetGroupResponse) GetInfo

func (x *GetGroupResponse) GetInfo() *GroupInfo

func (*GetGroupResponse) ProtoMessage

func (*GetGroupResponse) ProtoMessage()

func (*GetGroupResponse) ProtoReflect

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

func (*GetGroupResponse) Reset

func (x *GetGroupResponse) Reset()

func (*GetGroupResponse) String

func (x *GetGroupResponse) String() string

func (*GetGroupResponse) Validate

func (m *GetGroupResponse) Validate() error

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

type GetGroupResponseValidationError

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

GetGroupResponseValidationError is the validation error returned by GetGroupResponse.Validate if the designated constraints aren't met.

func (GetGroupResponseValidationError) Cause

Cause function returns cause value.

func (GetGroupResponseValidationError) Error

Error satisfies the builtin error interface

func (GetGroupResponseValidationError) ErrorName

ErrorName returns error name.

func (GetGroupResponseValidationError) Field

Field function returns field value.

func (GetGroupResponseValidationError) Key

Key function returns key value.

func (GetGroupResponseValidationError) Reason

Reason function returns reason value.

type GetItemRequest

type GetItemRequest struct {
	GroupId   uint64 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	ProjectId uint64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	ItemId    uint64 `protobuf:"varint,3,opt,name=item_id,json=itemId,proto3" json:"item_id,omitempty"`
	UserId    uint64 `protobuf:"varint,4,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetItemRequest) Descriptor deprecated

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

Deprecated: Use GetItemRequest.ProtoReflect.Descriptor instead.

func (*GetItemRequest) GetGroupId

func (x *GetItemRequest) GetGroupId() uint64

func (*GetItemRequest) GetItemId

func (x *GetItemRequest) GetItemId() uint64

func (*GetItemRequest) GetProjectId

func (x *GetItemRequest) GetProjectId() uint64

func (*GetItemRequest) GetUserId

func (x *GetItemRequest) GetUserId() uint64

func (*GetItemRequest) ProtoMessage

func (*GetItemRequest) ProtoMessage()

func (*GetItemRequest) ProtoReflect

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

func (*GetItemRequest) Reset

func (x *GetItemRequest) Reset()

func (*GetItemRequest) String

func (x *GetItemRequest) String() string

func (*GetItemRequest) Validate

func (m *GetItemRequest) Validate() error

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

type GetItemRequestValidationError

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

GetItemRequestValidationError is the validation error returned by GetItemRequest.Validate if the designated constraints aren't met.

func (GetItemRequestValidationError) Cause

Cause function returns cause value.

func (GetItemRequestValidationError) Error

Error satisfies the builtin error interface

func (GetItemRequestValidationError) ErrorName

func (e GetItemRequestValidationError) ErrorName() string

ErrorName returns error name.

func (GetItemRequestValidationError) Field

Field function returns field value.

func (GetItemRequestValidationError) Key

Key function returns key value.

func (GetItemRequestValidationError) Reason

Reason function returns reason value.

type GetItemResponse

type GetItemResponse struct {
	Info *ItemInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	// contains filtered or unexported fields
}

func (*GetItemResponse) Descriptor deprecated

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

Deprecated: Use GetItemResponse.ProtoReflect.Descriptor instead.

func (*GetItemResponse) GetInfo

func (x *GetItemResponse) GetInfo() *ItemInfo

func (*GetItemResponse) ProtoMessage

func (*GetItemResponse) ProtoMessage()

func (*GetItemResponse) ProtoReflect

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

func (*GetItemResponse) Reset

func (x *GetItemResponse) Reset()

func (*GetItemResponse) String

func (x *GetItemResponse) String() string

func (*GetItemResponse) Validate

func (m *GetItemResponse) Validate() error

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

type GetItemResponseValidationError

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

GetItemResponseValidationError is the validation error returned by GetItemResponse.Validate if the designated constraints aren't met.

func (GetItemResponseValidationError) Cause

Cause function returns cause value.

func (GetItemResponseValidationError) Error

Error satisfies the builtin error interface

func (GetItemResponseValidationError) ErrorName

func (e GetItemResponseValidationError) ErrorName() string

ErrorName returns error name.

func (GetItemResponseValidationError) Field

Field function returns field value.

func (GetItemResponseValidationError) Key

Key function returns key value.

func (GetItemResponseValidationError) Reason

Reason function returns reason value.

type GetProjectItemsRequest

type GetProjectItemsRequest struct {
	GroupId   uint64 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	ProjectId uint64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	UserId    uint64 `protobuf:"varint,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Offset    uint64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"`
	Number    uint64 `protobuf:"varint,5,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*GetProjectItemsRequest) Descriptor deprecated

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

Deprecated: Use GetProjectItemsRequest.ProtoReflect.Descriptor instead.

func (*GetProjectItemsRequest) GetGroupId

func (x *GetProjectItemsRequest) GetGroupId() uint64

func (*GetProjectItemsRequest) GetNumber

func (x *GetProjectItemsRequest) GetNumber() uint64

func (*GetProjectItemsRequest) GetOffset

func (x *GetProjectItemsRequest) GetOffset() uint64

func (*GetProjectItemsRequest) GetProjectId

func (x *GetProjectItemsRequest) GetProjectId() uint64

func (*GetProjectItemsRequest) GetUserId

func (x *GetProjectItemsRequest) GetUserId() uint64

func (*GetProjectItemsRequest) ProtoMessage

func (*GetProjectItemsRequest) ProtoMessage()

func (*GetProjectItemsRequest) ProtoReflect

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

func (*GetProjectItemsRequest) Reset

func (x *GetProjectItemsRequest) Reset()

func (*GetProjectItemsRequest) String

func (x *GetProjectItemsRequest) String() string

func (*GetProjectItemsRequest) Validate

func (m *GetProjectItemsRequest) Validate() error

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

type GetProjectItemsRequestValidationError

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

GetProjectItemsRequestValidationError is the validation error returned by GetProjectItemsRequest.Validate if the designated constraints aren't met.

func (GetProjectItemsRequestValidationError) Cause

Cause function returns cause value.

func (GetProjectItemsRequestValidationError) Error

Error satisfies the builtin error interface

func (GetProjectItemsRequestValidationError) ErrorName

ErrorName returns error name.

func (GetProjectItemsRequestValidationError) Field

Field function returns field value.

func (GetProjectItemsRequestValidationError) Key

Key function returns key value.

func (GetProjectItemsRequestValidationError) Reason

Reason function returns reason value.

type GetProjectItemsResponse

type GetProjectItemsResponse struct {
	List      []*ItemInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
	GroupId   uint64      `protobuf:"varint,2,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	ProjectId uint64      `protobuf:"varint,3,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	UserId    uint64      `protobuf:"varint,4,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Offset    uint64      `protobuf:"varint,5,opt,name=offset,proto3" json:"offset,omitempty"`
	Number    uint64      `protobuf:"varint,6,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*GetProjectItemsResponse) Descriptor deprecated

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

Deprecated: Use GetProjectItemsResponse.ProtoReflect.Descriptor instead.

func (*GetProjectItemsResponse) GetGroupId

func (x *GetProjectItemsResponse) GetGroupId() uint64

func (*GetProjectItemsResponse) GetList

func (x *GetProjectItemsResponse) GetList() []*ItemInfo

func (*GetProjectItemsResponse) GetNumber

func (x *GetProjectItemsResponse) GetNumber() uint64

func (*GetProjectItemsResponse) GetOffset

func (x *GetProjectItemsResponse) GetOffset() uint64

func (*GetProjectItemsResponse) GetProjectId

func (x *GetProjectItemsResponse) GetProjectId() uint64

func (*GetProjectItemsResponse) GetUserId

func (x *GetProjectItemsResponse) GetUserId() uint64

func (*GetProjectItemsResponse) ProtoMessage

func (*GetProjectItemsResponse) ProtoMessage()

func (*GetProjectItemsResponse) ProtoReflect

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

func (*GetProjectItemsResponse) Reset

func (x *GetProjectItemsResponse) Reset()

func (*GetProjectItemsResponse) String

func (x *GetProjectItemsResponse) String() string

func (*GetProjectItemsResponse) Validate

func (m *GetProjectItemsResponse) Validate() error

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

type GetProjectItemsResponseValidationError

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

GetProjectItemsResponseValidationError is the validation error returned by GetProjectItemsResponse.Validate if the designated constraints aren't met.

func (GetProjectItemsResponseValidationError) Cause

Cause function returns cause value.

func (GetProjectItemsResponseValidationError) Error

Error satisfies the builtin error interface

func (GetProjectItemsResponseValidationError) ErrorName

ErrorName returns error name.

func (GetProjectItemsResponseValidationError) Field

Field function returns field value.

func (GetProjectItemsResponseValidationError) Key

Key function returns key value.

func (GetProjectItemsResponseValidationError) Reason

Reason function returns reason value.

type GetProjectProfileRequest

type GetProjectProfileRequest struct {
	GroupId   uint64 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	ProjectId uint64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	UserId    uint64 `protobuf:"varint,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetProjectProfileRequest) Descriptor deprecated

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

Deprecated: Use GetProjectProfileRequest.ProtoReflect.Descriptor instead.

func (*GetProjectProfileRequest) GetGroupId

func (x *GetProjectProfileRequest) GetGroupId() uint64

func (*GetProjectProfileRequest) GetProjectId

func (x *GetProjectProfileRequest) GetProjectId() uint64

func (*GetProjectProfileRequest) GetUserId

func (x *GetProjectProfileRequest) GetUserId() uint64

func (*GetProjectProfileRequest) ProtoMessage

func (*GetProjectProfileRequest) ProtoMessage()

func (*GetProjectProfileRequest) ProtoReflect

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

func (*GetProjectProfileRequest) Reset

func (x *GetProjectProfileRequest) Reset()

func (*GetProjectProfileRequest) String

func (x *GetProjectProfileRequest) String() string

func (*GetProjectProfileRequest) Validate

func (m *GetProjectProfileRequest) Validate() error

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

type GetProjectProfileRequestValidationError

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

GetProjectProfileRequestValidationError is the validation error returned by GetProjectProfileRequest.Validate if the designated constraints aren't met.

func (GetProjectProfileRequestValidationError) Cause

Cause function returns cause value.

func (GetProjectProfileRequestValidationError) Error

Error satisfies the builtin error interface

func (GetProjectProfileRequestValidationError) ErrorName

ErrorName returns error name.

func (GetProjectProfileRequestValidationError) Field

Field function returns field value.

func (GetProjectProfileRequestValidationError) Key

Key function returns key value.

func (GetProjectProfileRequestValidationError) Reason

Reason function returns reason value.

type GetProjectProfileResponse

type GetProjectProfileResponse struct {
	GroupId   uint64              `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	ProjectId uint64              `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	UserId    uint64              `protobuf:"varint,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Info      *ProjectProfileInfo `protobuf:"bytes,4,opt,name=info,proto3" json:"info,omitempty"`
	// contains filtered or unexported fields
}

func (*GetProjectProfileResponse) Descriptor deprecated

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

Deprecated: Use GetProjectProfileResponse.ProtoReflect.Descriptor instead.

func (*GetProjectProfileResponse) GetGroupId

func (x *GetProjectProfileResponse) GetGroupId() uint64

func (*GetProjectProfileResponse) GetInfo

func (*GetProjectProfileResponse) GetProjectId

func (x *GetProjectProfileResponse) GetProjectId() uint64

func (*GetProjectProfileResponse) GetUserId

func (x *GetProjectProfileResponse) GetUserId() uint64

func (*GetProjectProfileResponse) ProtoMessage

func (*GetProjectProfileResponse) ProtoMessage()

func (*GetProjectProfileResponse) ProtoReflect

func (*GetProjectProfileResponse) Reset

func (x *GetProjectProfileResponse) Reset()

func (*GetProjectProfileResponse) String

func (x *GetProjectProfileResponse) String() string

func (*GetProjectProfileResponse) Validate

func (m *GetProjectProfileResponse) Validate() error

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

type GetProjectProfileResponseValidationError

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

GetProjectProfileResponseValidationError is the validation error returned by GetProjectProfileResponse.Validate if the designated constraints aren't met.

func (GetProjectProfileResponseValidationError) Cause

Cause function returns cause value.

func (GetProjectProfileResponseValidationError) Error

Error satisfies the builtin error interface

func (GetProjectProfileResponseValidationError) ErrorName

ErrorName returns error name.

func (GetProjectProfileResponseValidationError) Field

Field function returns field value.

func (GetProjectProfileResponseValidationError) Key

Key function returns key value.

func (GetProjectProfileResponseValidationError) Reason

Reason function returns reason value.

type GetProjectRequest

type GetProjectRequest struct {
	GroupId   uint64 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	ProjectId uint64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	UserId    uint64 `protobuf:"varint,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetProjectRequest) Descriptor deprecated

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

Deprecated: Use GetProjectRequest.ProtoReflect.Descriptor instead.

func (*GetProjectRequest) GetGroupId

func (x *GetProjectRequest) GetGroupId() uint64

func (*GetProjectRequest) GetProjectId

func (x *GetProjectRequest) GetProjectId() uint64

func (*GetProjectRequest) GetUserId

func (x *GetProjectRequest) GetUserId() uint64

func (*GetProjectRequest) ProtoMessage

func (*GetProjectRequest) ProtoMessage()

func (*GetProjectRequest) ProtoReflect

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

func (*GetProjectRequest) Reset

func (x *GetProjectRequest) Reset()

func (*GetProjectRequest) String

func (x *GetProjectRequest) String() string

func (*GetProjectRequest) Validate

func (m *GetProjectRequest) Validate() error

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

type GetProjectRequestValidationError

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

GetProjectRequestValidationError is the validation error returned by GetProjectRequest.Validate if the designated constraints aren't met.

func (GetProjectRequestValidationError) Cause

Cause function returns cause value.

func (GetProjectRequestValidationError) Error

Error satisfies the builtin error interface

func (GetProjectRequestValidationError) ErrorName

ErrorName returns error name.

func (GetProjectRequestValidationError) Field

Field function returns field value.

func (GetProjectRequestValidationError) Key

Key function returns key value.

func (GetProjectRequestValidationError) Reason

Reason function returns reason value.

type GetProjectResponse

type GetProjectResponse struct {
	Info *ProjectInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	// contains filtered or unexported fields
}

func (*GetProjectResponse) Descriptor deprecated

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

Deprecated: Use GetProjectResponse.ProtoReflect.Descriptor instead.

func (*GetProjectResponse) GetInfo

func (x *GetProjectResponse) GetInfo() *ProjectInfo

func (*GetProjectResponse) ProtoMessage

func (*GetProjectResponse) ProtoMessage()

func (*GetProjectResponse) ProtoReflect

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

func (*GetProjectResponse) Reset

func (x *GetProjectResponse) Reset()

func (*GetProjectResponse) String

func (x *GetProjectResponse) String() string

func (*GetProjectResponse) Validate

func (m *GetProjectResponse) Validate() error

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

type GetProjectResponseValidationError

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

GetProjectResponseValidationError is the validation error returned by GetProjectResponse.Validate if the designated constraints aren't met.

func (GetProjectResponseValidationError) Cause

Cause function returns cause value.

func (GetProjectResponseValidationError) Error

Error satisfies the builtin error interface

func (GetProjectResponseValidationError) ErrorName

ErrorName returns error name.

func (GetProjectResponseValidationError) Field

Field function returns field value.

func (GetProjectResponseValidationError) Key

Key function returns key value.

func (GetProjectResponseValidationError) Reason

Reason function returns reason value.

type GetUserItemsRequest

type GetUserItemsRequest struct {
	UserId uint64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
	Number uint64 `protobuf:"varint,3,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*GetUserItemsRequest) Descriptor deprecated

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

Deprecated: Use GetUserItemsRequest.ProtoReflect.Descriptor instead.

func (*GetUserItemsRequest) GetNumber

func (x *GetUserItemsRequest) GetNumber() uint64

func (*GetUserItemsRequest) GetOffset

func (x *GetUserItemsRequest) GetOffset() uint64

func (*GetUserItemsRequest) GetUserId

func (x *GetUserItemsRequest) GetUserId() uint64

func (*GetUserItemsRequest) ProtoMessage

func (*GetUserItemsRequest) ProtoMessage()

func (*GetUserItemsRequest) ProtoReflect

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

func (*GetUserItemsRequest) Reset

func (x *GetUserItemsRequest) Reset()

func (*GetUserItemsRequest) String

func (x *GetUserItemsRequest) String() string

func (*GetUserItemsRequest) Validate

func (m *GetUserItemsRequest) Validate() error

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

type GetUserItemsRequestValidationError

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

GetUserItemsRequestValidationError is the validation error returned by GetUserItemsRequest.Validate if the designated constraints aren't met.

func (GetUserItemsRequestValidationError) Cause

Cause function returns cause value.

func (GetUserItemsRequestValidationError) Error

Error satisfies the builtin error interface

func (GetUserItemsRequestValidationError) ErrorName

ErrorName returns error name.

func (GetUserItemsRequestValidationError) Field

Field function returns field value.

func (GetUserItemsRequestValidationError) Key

Key function returns key value.

func (GetUserItemsRequestValidationError) Reason

Reason function returns reason value.

type GetUserItemsResponse

type GetUserItemsResponse struct {
	List   []*ItemInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
	UserId uint64      `protobuf:"varint,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Offset uint64      `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
	Number uint64      `protobuf:"varint,4,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*GetUserItemsResponse) Descriptor deprecated

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

Deprecated: Use GetUserItemsResponse.ProtoReflect.Descriptor instead.

func (*GetUserItemsResponse) GetList

func (x *GetUserItemsResponse) GetList() []*ItemInfo

func (*GetUserItemsResponse) GetNumber

func (x *GetUserItemsResponse) GetNumber() uint64

func (*GetUserItemsResponse) GetOffset

func (x *GetUserItemsResponse) GetOffset() uint64

func (*GetUserItemsResponse) GetUserId

func (x *GetUserItemsResponse) GetUserId() uint64

func (*GetUserItemsResponse) ProtoMessage

func (*GetUserItemsResponse) ProtoMessage()

func (*GetUserItemsResponse) ProtoReflect

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

func (*GetUserItemsResponse) Reset

func (x *GetUserItemsResponse) Reset()

func (*GetUserItemsResponse) String

func (x *GetUserItemsResponse) String() string

func (*GetUserItemsResponse) Validate

func (m *GetUserItemsResponse) Validate() error

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

type GetUserItemsResponseValidationError

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

GetUserItemsResponseValidationError is the validation error returned by GetUserItemsResponse.Validate if the designated constraints aren't met.

func (GetUserItemsResponseValidationError) Cause

Cause function returns cause value.

func (GetUserItemsResponseValidationError) Error

Error satisfies the builtin error interface

func (GetUserItemsResponseValidationError) ErrorName

ErrorName returns error name.

func (GetUserItemsResponseValidationError) Field

Field function returns field value.

func (GetUserItemsResponseValidationError) Key

Key function returns key value.

func (GetUserItemsResponseValidationError) Reason

Reason function returns reason value.

type GetWatchingProjectRequest

type GetWatchingProjectRequest struct {
	UserId uint64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Offset uint64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
	Number uint64 `protobuf:"varint,4,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*GetWatchingProjectRequest) Descriptor deprecated

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

Deprecated: Use GetWatchingProjectRequest.ProtoReflect.Descriptor instead.

func (*GetWatchingProjectRequest) GetNumber

func (x *GetWatchingProjectRequest) GetNumber() uint64

func (*GetWatchingProjectRequest) GetOffset

func (x *GetWatchingProjectRequest) GetOffset() uint64

func (*GetWatchingProjectRequest) GetUserId

func (x *GetWatchingProjectRequest) GetUserId() uint64

func (*GetWatchingProjectRequest) ProtoMessage

func (*GetWatchingProjectRequest) ProtoMessage()

func (*GetWatchingProjectRequest) ProtoReflect

func (*GetWatchingProjectRequest) Reset

func (x *GetWatchingProjectRequest) Reset()

func (*GetWatchingProjectRequest) String

func (x *GetWatchingProjectRequest) String() string

func (*GetWatchingProjectRequest) Validate

func (m *GetWatchingProjectRequest) Validate() error

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

type GetWatchingProjectRequestValidationError

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

GetWatchingProjectRequestValidationError is the validation error returned by GetWatchingProjectRequest.Validate if the designated constraints aren't met.

func (GetWatchingProjectRequestValidationError) Cause

Cause function returns cause value.

func (GetWatchingProjectRequestValidationError) Error

Error satisfies the builtin error interface

func (GetWatchingProjectRequestValidationError) ErrorName

ErrorName returns error name.

func (GetWatchingProjectRequestValidationError) Field

Field function returns field value.

func (GetWatchingProjectRequestValidationError) Key

Key function returns key value.

func (GetWatchingProjectRequestValidationError) Reason

Reason function returns reason value.

type GetWatchingProjectResponse

type GetWatchingProjectResponse struct {
	UserId uint64         `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	List   []*ProjectInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list,omitempty"`
	Offset uint64         `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
	Number uint64         `protobuf:"varint,4,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*GetWatchingProjectResponse) Descriptor deprecated

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

Deprecated: Use GetWatchingProjectResponse.ProtoReflect.Descriptor instead.

func (*GetWatchingProjectResponse) GetList

func (x *GetWatchingProjectResponse) GetList() []*ProjectInfo

func (*GetWatchingProjectResponse) GetNumber

func (x *GetWatchingProjectResponse) GetNumber() uint64

func (*GetWatchingProjectResponse) GetOffset

func (x *GetWatchingProjectResponse) GetOffset() uint64

func (*GetWatchingProjectResponse) GetUserId

func (x *GetWatchingProjectResponse) GetUserId() uint64

func (*GetWatchingProjectResponse) ProtoMessage

func (*GetWatchingProjectResponse) ProtoMessage()

func (*GetWatchingProjectResponse) ProtoReflect

func (*GetWatchingProjectResponse) Reset

func (x *GetWatchingProjectResponse) Reset()

func (*GetWatchingProjectResponse) String

func (x *GetWatchingProjectResponse) String() string

func (*GetWatchingProjectResponse) Validate

func (m *GetWatchingProjectResponse) Validate() error

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

type GetWatchingProjectResponseValidationError

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

GetWatchingProjectResponseValidationError is the validation error returned by GetWatchingProjectResponse.Validate if the designated constraints aren't met.

func (GetWatchingProjectResponseValidationError) Cause

Cause function returns cause value.

func (GetWatchingProjectResponseValidationError) Error

Error satisfies the builtin error interface

func (GetWatchingProjectResponseValidationError) ErrorName

ErrorName returns error name.

func (GetWatchingProjectResponseValidationError) Field

Field function returns field value.

func (GetWatchingProjectResponseValidationError) Key

Key function returns key value.

func (GetWatchingProjectResponseValidationError) Reason

Reason function returns reason value.

type GroupInfo

type GroupInfo struct {
	GroupId uint64    `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	Name    string    `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Avatar  string    `protobuf:"bytes,3,opt,name=avatar,proto3" json:"avatar,omitempty"`
	Desc    string    `protobuf:"bytes,4,opt,name=desc,proto3" json:"desc,omitempty"`
	Creator *UserInfo `protobuf:"bytes,5,opt,name=creator,proto3" json:"creator,omitempty"`
	Owner   *UserInfo `protobuf:"bytes,6,opt,name=owner,proto3" json:"owner,omitempty"`
	Tags    []*Tags   `protobuf:"bytes,7,rep,name=tags,proto3" json:"tags,omitempty"`
	// contains filtered or unexported fields
}

func (*GroupInfo) Descriptor deprecated

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

Deprecated: Use GroupInfo.ProtoReflect.Descriptor instead.

func (*GroupInfo) GetAvatar

func (x *GroupInfo) GetAvatar() string

func (*GroupInfo) GetCreator

func (x *GroupInfo) GetCreator() *UserInfo

func (*GroupInfo) GetDesc

func (x *GroupInfo) GetDesc() string

func (*GroupInfo) GetGroupId

func (x *GroupInfo) GetGroupId() uint64

func (*GroupInfo) GetName

func (x *GroupInfo) GetName() string

func (*GroupInfo) GetOwner

func (x *GroupInfo) GetOwner() *UserInfo

func (*GroupInfo) GetTags

func (x *GroupInfo) GetTags() []*Tags

func (*GroupInfo) ProtoMessage

func (*GroupInfo) ProtoMessage()

func (*GroupInfo) ProtoReflect

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

func (*GroupInfo) Reset

func (x *GroupInfo) Reset()

func (*GroupInfo) String

func (x *GroupInfo) String() string

func (*GroupInfo) Validate

func (m *GroupInfo) Validate() error

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

type GroupInfoValidationError

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

GroupInfoValidationError is the validation error returned by GroupInfo.Validate if the designated constraints aren't met.

func (GroupInfoValidationError) Cause

func (e GroupInfoValidationError) Cause() error

Cause function returns cause value.

func (GroupInfoValidationError) Error

func (e GroupInfoValidationError) Error() string

Error satisfies the builtin error interface

func (GroupInfoValidationError) ErrorName

func (e GroupInfoValidationError) ErrorName() string

ErrorName returns error name.

func (GroupInfoValidationError) Field

func (e GroupInfoValidationError) Field() string

Field function returns field value.

func (GroupInfoValidationError) Key

Key function returns key value.

func (GroupInfoValidationError) Reason

func (e GroupInfoValidationError) Reason() string

Reason function returns reason value.

type GroupProfileInfo

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

func (*GroupProfileInfo) Descriptor deprecated

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

Deprecated: Use GroupProfileInfo.ProtoReflect.Descriptor instead.

func (*GroupProfileInfo) ProtoMessage

func (*GroupProfileInfo) ProtoMessage()

func (*GroupProfileInfo) ProtoReflect

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

func (*GroupProfileInfo) Reset

func (x *GroupProfileInfo) Reset()

func (*GroupProfileInfo) String

func (x *GroupProfileInfo) String() string

func (*GroupProfileInfo) Validate

func (m *GroupProfileInfo) Validate() error

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

type GroupProfileInfoValidationError

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

GroupProfileInfoValidationError is the validation error returned by GroupProfileInfo.Validate if the designated constraints aren't met.

func (GroupProfileInfoValidationError) Cause

Cause function returns cause value.

func (GroupProfileInfoValidationError) Error

Error satisfies the builtin error interface

func (GroupProfileInfoValidationError) ErrorName

ErrorName returns error name.

func (GroupProfileInfoValidationError) Field

Field function returns field value.

func (GroupProfileInfoValidationError) Key

Key function returns key value.

func (GroupProfileInfoValidationError) Reason

Reason function returns reason value.

type GroupStatus

type GroupStatus int32
const (
	GroupStatus_NotReady GroupStatus = 0
	GroupStatus_Normal   GroupStatus = 1
	GroupStatus_ViewOnly GroupStatus = 2
	GroupStatus_Abandon  GroupStatus = 3
)

func (GroupStatus) Descriptor

func (GroupStatus) Enum

func (x GroupStatus) Enum() *GroupStatus

func (GroupStatus) EnumDescriptor deprecated

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

Deprecated: Use GroupStatus.Descriptor instead.

func (GroupStatus) Number

func (x GroupStatus) Number() protoreflect.EnumNumber

func (GroupStatus) String

func (x GroupStatus) String() string

func (GroupStatus) Type

type ItemClient

ItemClient is the client API for Item service.

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

func NewItemClient

func NewItemClient(cc grpc.ClientConnInterface) ItemClient

type ItemDetail

type ItemDetail struct {

	// Types that are assignable to Detail:
	//	*ItemDetail_Word
	//	*ItemDetail_Pictures
	//	*ItemDetail_Video
	//	*ItemDetail_Music
	//	*ItemDetail_Voice
	//	*ItemDetail_Share
	Detail isItemDetail_Detail `protobuf_oneof:"detail"`
	// contains filtered or unexported fields
}

func (*ItemDetail) Descriptor deprecated

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

Deprecated: Use ItemDetail.ProtoReflect.Descriptor instead.

func (*ItemDetail) GetDetail

func (m *ItemDetail) GetDetail() isItemDetail_Detail

func (*ItemDetail) GetMusic

func (x *ItemDetail) GetMusic() *MusicShareDetail

func (*ItemDetail) GetPictures

func (x *ItemDetail) GetPictures() *PictureDetail

func (*ItemDetail) GetShare

func (x *ItemDetail) GetShare() *ShareDetail

func (*ItemDetail) GetVideo

func (x *ItemDetail) GetVideo() *VideoDetail

func (*ItemDetail) GetVoice

func (x *ItemDetail) GetVoice() *VoiceDetail

func (*ItemDetail) GetWord

func (x *ItemDetail) GetWord() *WordDetail

func (*ItemDetail) ProtoMessage

func (*ItemDetail) ProtoMessage()

func (*ItemDetail) ProtoReflect

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

func (*ItemDetail) Reset

func (x *ItemDetail) Reset()

func (*ItemDetail) String

func (x *ItemDetail) String() string

func (*ItemDetail) Validate

func (m *ItemDetail) Validate() error

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

type ItemDetailValidationError

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

ItemDetailValidationError is the validation error returned by ItemDetail.Validate if the designated constraints aren't met.

func (ItemDetailValidationError) Cause

func (e ItemDetailValidationError) Cause() error

Cause function returns cause value.

func (ItemDetailValidationError) Error

Error satisfies the builtin error interface

func (ItemDetailValidationError) ErrorName

func (e ItemDetailValidationError) ErrorName() string

ErrorName returns error name.

func (ItemDetailValidationError) Field

Field function returns field value.

func (ItemDetailValidationError) Key

Key function returns key value.

func (ItemDetailValidationError) Reason

func (e ItemDetailValidationError) Reason() string

Reason function returns reason value.

type ItemDetail_Music

type ItemDetail_Music struct {
	Music *MusicShareDetail `protobuf:"bytes,4,opt,name=music,proto3,oneof"`
}

type ItemDetail_Pictures

type ItemDetail_Pictures struct {
	Pictures *PictureDetail `protobuf:"bytes,2,opt,name=pictures,proto3,oneof"`
}

type ItemDetail_Share

type ItemDetail_Share struct {
	Share *ShareDetail `protobuf:"bytes,6,opt,name=share,proto3,oneof"`
}

type ItemDetail_Video

type ItemDetail_Video struct {
	Video *VideoDetail `protobuf:"bytes,3,opt,name=video,proto3,oneof"`
}

type ItemDetail_Voice

type ItemDetail_Voice struct {
	Voice *VoiceDetail `protobuf:"bytes,5,opt,name=voice,proto3,oneof"`
}

type ItemDetail_Word

type ItemDetail_Word struct {
	Word *WordDetail `protobuf:"bytes,1,opt,name=word,proto3,oneof"`
}

type ItemInfo

type ItemInfo struct {
	GroupId   uint64      `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	ProjectId uint64      `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	UserId    uint64      `protobuf:"varint,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Title     string      `protobuf:"bytes,4,opt,name=title,proto3" json:"title,omitempty"`
	Content   *ItemDetail `protobuf:"bytes,5,opt,name=content,proto3" json:"content,omitempty"`
	Itype     ItemType    `protobuf:"varint,6,opt,name=itype,proto3,enum=grapery.api.ItemType" json:"itype,omitempty"`
	// contains filtered or unexported fields
}

func (*ItemInfo) Descriptor deprecated

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

Deprecated: Use ItemInfo.ProtoReflect.Descriptor instead.

func (*ItemInfo) GetContent

func (x *ItemInfo) GetContent() *ItemDetail

func (*ItemInfo) GetGroupId

func (x *ItemInfo) GetGroupId() uint64

func (*ItemInfo) GetItype

func (x *ItemInfo) GetItype() ItemType

func (*ItemInfo) GetProjectId

func (x *ItemInfo) GetProjectId() uint64

func (*ItemInfo) GetTitle

func (x *ItemInfo) GetTitle() string

func (*ItemInfo) GetUserId

func (x *ItemInfo) GetUserId() uint64

func (*ItemInfo) ProtoMessage

func (*ItemInfo) ProtoMessage()

func (*ItemInfo) ProtoReflect

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

func (*ItemInfo) Reset

func (x *ItemInfo) Reset()

func (*ItemInfo) String

func (x *ItemInfo) String() string

func (*ItemInfo) Validate

func (m *ItemInfo) Validate() error

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

type ItemInfoValidationError

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

ItemInfoValidationError is the validation error returned by ItemInfo.Validate if the designated constraints aren't met.

func (ItemInfoValidationError) Cause

func (e ItemInfoValidationError) Cause() error

Cause function returns cause value.

func (ItemInfoValidationError) Error

func (e ItemInfoValidationError) Error() string

Error satisfies the builtin error interface

func (ItemInfoValidationError) ErrorName

func (e ItemInfoValidationError) ErrorName() string

ErrorName returns error name.

func (ItemInfoValidationError) Field

func (e ItemInfoValidationError) Field() string

Field function returns field value.

func (ItemInfoValidationError) Key

func (e ItemInfoValidationError) Key() bool

Key function returns key value.

func (ItemInfoValidationError) Reason

func (e ItemInfoValidationError) Reason() string

Reason function returns reason value.

type ItemType

type ItemType int32
const (
	ItemType_AllItem   ItemType = 0
	ItemType_ShortWord ItemType = 1
	ItemType_Paper     ItemType = 2
	ItemType_Picture   ItemType = 3
	ItemType_Video     ItemType = 4
	ItemType_Music     ItemType = 5
	ItemType_Link      ItemType = 6
	ItemType_Location  ItemType = 7
)

func (ItemType) Descriptor

func (ItemType) Descriptor() protoreflect.EnumDescriptor

func (ItemType) Enum

func (x ItemType) Enum() *ItemType

func (ItemType) EnumDescriptor deprecated

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

Deprecated: Use ItemType.Descriptor instead.

func (ItemType) Number

func (x ItemType) Number() protoreflect.EnumNumber

func (ItemType) String

func (x ItemType) String() string

func (ItemType) Type

type JoinGroupRequest

type JoinGroupRequest struct {
	GroupId uint64 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	UserId  uint64 `protobuf:"varint,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*JoinGroupRequest) Descriptor deprecated

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

Deprecated: Use JoinGroupRequest.ProtoReflect.Descriptor instead.

func (*JoinGroupRequest) GetGroupId

func (x *JoinGroupRequest) GetGroupId() uint64

func (*JoinGroupRequest) GetUserId

func (x *JoinGroupRequest) GetUserId() uint64

func (*JoinGroupRequest) ProtoMessage

func (*JoinGroupRequest) ProtoMessage()

func (*JoinGroupRequest) ProtoReflect

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

func (*JoinGroupRequest) Reset

func (x *JoinGroupRequest) Reset()

func (*JoinGroupRequest) String

func (x *JoinGroupRequest) String() string

func (*JoinGroupRequest) Validate

func (m *JoinGroupRequest) Validate() error

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

type JoinGroupRequestValidationError

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

JoinGroupRequestValidationError is the validation error returned by JoinGroupRequest.Validate if the designated constraints aren't met.

func (JoinGroupRequestValidationError) Cause

Cause function returns cause value.

func (JoinGroupRequestValidationError) Error

Error satisfies the builtin error interface

func (JoinGroupRequestValidationError) ErrorName

ErrorName returns error name.

func (JoinGroupRequestValidationError) Field

Field function returns field value.

func (JoinGroupRequestValidationError) Key

Key function returns key value.

func (JoinGroupRequestValidationError) Reason

Reason function returns reason value.

type JoinGroupResponse

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

func (*JoinGroupResponse) Descriptor deprecated

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

Deprecated: Use JoinGroupResponse.ProtoReflect.Descriptor instead.

func (*JoinGroupResponse) ProtoMessage

func (*JoinGroupResponse) ProtoMessage()

func (*JoinGroupResponse) ProtoReflect

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

func (*JoinGroupResponse) Reset

func (x *JoinGroupResponse) Reset()

func (*JoinGroupResponse) String

func (x *JoinGroupResponse) String() string

func (*JoinGroupResponse) Validate

func (m *JoinGroupResponse) Validate() error

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

type JoinGroupResponseValidationError

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

JoinGroupResponseValidationError is the validation error returned by JoinGroupResponse.Validate if the designated constraints aren't met.

func (JoinGroupResponseValidationError) Cause

Cause function returns cause value.

func (JoinGroupResponseValidationError) Error

Error satisfies the builtin error interface

func (JoinGroupResponseValidationError) ErrorName

ErrorName returns error name.

func (JoinGroupResponseValidationError) Field

Field function returns field value.

func (JoinGroupResponseValidationError) Key

Key function returns key value.

func (JoinGroupResponseValidationError) Reason

Reason function returns reason value.

type LeaveGroupRequest

type LeaveGroupRequest struct {
	GroupId uint64 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	UserId  uint64 `protobuf:"varint,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*LeaveGroupRequest) Descriptor deprecated

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

Deprecated: Use LeaveGroupRequest.ProtoReflect.Descriptor instead.

func (*LeaveGroupRequest) GetGroupId

func (x *LeaveGroupRequest) GetGroupId() uint64

func (*LeaveGroupRequest) GetUserId

func (x *LeaveGroupRequest) GetUserId() uint64

func (*LeaveGroupRequest) ProtoMessage

func (*LeaveGroupRequest) ProtoMessage()

func (*LeaveGroupRequest) ProtoReflect

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

func (*LeaveGroupRequest) Reset

func (x *LeaveGroupRequest) Reset()

func (*LeaveGroupRequest) String

func (x *LeaveGroupRequest) String() string

func (*LeaveGroupRequest) Validate

func (m *LeaveGroupRequest) Validate() error

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

type LeaveGroupRequestValidationError

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

LeaveGroupRequestValidationError is the validation error returned by LeaveGroupRequest.Validate if the designated constraints aren't met.

func (LeaveGroupRequestValidationError) Cause

Cause function returns cause value.

func (LeaveGroupRequestValidationError) Error

Error satisfies the builtin error interface

func (LeaveGroupRequestValidationError) ErrorName

ErrorName returns error name.

func (LeaveGroupRequestValidationError) Field

Field function returns field value.

func (LeaveGroupRequestValidationError) Key

Key function returns key value.

func (LeaveGroupRequestValidationError) Reason

Reason function returns reason value.

type LeaveGroupResponse

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

func (*LeaveGroupResponse) Descriptor deprecated

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

Deprecated: Use LeaveGroupResponse.ProtoReflect.Descriptor instead.

func (*LeaveGroupResponse) ProtoMessage

func (*LeaveGroupResponse) ProtoMessage()

func (*LeaveGroupResponse) ProtoReflect

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

func (*LeaveGroupResponse) Reset

func (x *LeaveGroupResponse) Reset()

func (*LeaveGroupResponse) String

func (x *LeaveGroupResponse) String() string

func (*LeaveGroupResponse) Validate

func (m *LeaveGroupResponse) Validate() error

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

type LeaveGroupResponseValidationError

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

LeaveGroupResponseValidationError is the validation error returned by LeaveGroupResponse.Validate if the designated constraints aren't met.

func (LeaveGroupResponseValidationError) Cause

Cause function returns cause value.

func (LeaveGroupResponseValidationError) Error

Error satisfies the builtin error interface

func (LeaveGroupResponseValidationError) ErrorName

ErrorName returns error name.

func (LeaveGroupResponseValidationError) Field

Field function returns field value.

func (LeaveGroupResponseValidationError) Key

Key function returns key value.

func (LeaveGroupResponseValidationError) Reason

Reason function returns reason value.

type LikeItemRequest

type LikeItemRequest struct {
	GroupId   uint64 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	ProjectId uint64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	ItemId    uint64 `protobuf:"varint,3,opt,name=item_id,json=itemId,proto3" json:"item_id,omitempty"`
	UserId    uint64 `protobuf:"varint,4,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Islike    bool   `protobuf:"varint,5,opt,name=islike,proto3" json:"islike,omitempty"`
	// contains filtered or unexported fields
}

func (*LikeItemRequest) Descriptor deprecated

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

Deprecated: Use LikeItemRequest.ProtoReflect.Descriptor instead.

func (*LikeItemRequest) GetGroupId

func (x *LikeItemRequest) GetGroupId() uint64

func (*LikeItemRequest) GetIslike

func (x *LikeItemRequest) GetIslike() bool

func (*LikeItemRequest) GetItemId

func (x *LikeItemRequest) GetItemId() uint64

func (*LikeItemRequest) GetProjectId

func (x *LikeItemRequest) GetProjectId() uint64

func (*LikeItemRequest) GetUserId

func (x *LikeItemRequest) GetUserId() uint64

func (*LikeItemRequest) ProtoMessage

func (*LikeItemRequest) ProtoMessage()

func (*LikeItemRequest) ProtoReflect

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

func (*LikeItemRequest) Reset

func (x *LikeItemRequest) Reset()

func (*LikeItemRequest) String

func (x *LikeItemRequest) String() string

func (*LikeItemRequest) Validate

func (m *LikeItemRequest) Validate() error

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

type LikeItemRequestValidationError

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

LikeItemRequestValidationError is the validation error returned by LikeItemRequest.Validate if the designated constraints aren't met.

func (LikeItemRequestValidationError) Cause

Cause function returns cause value.

func (LikeItemRequestValidationError) Error

Error satisfies the builtin error interface

func (LikeItemRequestValidationError) ErrorName

func (e LikeItemRequestValidationError) ErrorName() string

ErrorName returns error name.

func (LikeItemRequestValidationError) Field

Field function returns field value.

func (LikeItemRequestValidationError) Key

Key function returns key value.

func (LikeItemRequestValidationError) Reason

Reason function returns reason value.

type LikeItemResponse

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

func (*LikeItemResponse) Descriptor deprecated

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

Deprecated: Use LikeItemResponse.ProtoReflect.Descriptor instead.

func (*LikeItemResponse) ProtoMessage

func (*LikeItemResponse) ProtoMessage()

func (*LikeItemResponse) ProtoReflect

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

func (*LikeItemResponse) Reset

func (x *LikeItemResponse) Reset()

func (*LikeItemResponse) String

func (x *LikeItemResponse) String() string

func (*LikeItemResponse) Validate

func (m *LikeItemResponse) Validate() error

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

type LikeItemResponseValidationError

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

LikeItemResponseValidationError is the validation error returned by LikeItemResponse.Validate if the designated constraints aren't met.

func (LikeItemResponseValidationError) Cause

Cause function returns cause value.

func (LikeItemResponseValidationError) Error

Error satisfies the builtin error interface

func (LikeItemResponseValidationError) ErrorName

ErrorName returns error name.

func (LikeItemResponseValidationError) Field

Field function returns field value.

func (LikeItemResponseValidationError) Key

Key function returns key value.

func (LikeItemResponseValidationError) Reason

Reason function returns reason value.

type LikeType

type LikeType int32
const (
	LikeType_Browser LikeType = 0
	// orange,激进的
	LikeType_Left LikeType = 1
	// blue,温和的
	LikeType_Middle LikeType = 2
	// green 保守的
	LikeType_Right LikeType = 3
)

func (LikeType) Descriptor

func (LikeType) Descriptor() protoreflect.EnumDescriptor

func (LikeType) Enum

func (x LikeType) Enum() *LikeType

func (LikeType) EnumDescriptor deprecated

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

Deprecated: Use LikeType.Descriptor instead.

func (LikeType) Number

func (x LikeType) Number() protoreflect.EnumNumber

func (LikeType) String

func (x LikeType) String() string

func (LikeType) Type

type LoginRequest

type LoginRequest struct {
	LoginType AuthType `protobuf:"varint,1,opt,name=login_type,json=loginType,proto3,enum=grapery.api.AuthType" json:"login_type,omitempty"`
	Account   string   `protobuf:"bytes,2,opt,name=account,proto3" json:"account,omitempty"`
	Password  string   `protobuf:"bytes,3,opt,name=password,proto3" json:"password,omitempty"`
	// contains filtered or unexported fields
}

func (*LoginRequest) Descriptor deprecated

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

Deprecated: Use LoginRequest.ProtoReflect.Descriptor instead.

func (*LoginRequest) GetAccount

func (x *LoginRequest) GetAccount() string

func (*LoginRequest) GetLoginType

func (x *LoginRequest) GetLoginType() AuthType

func (*LoginRequest) GetPassword

func (x *LoginRequest) GetPassword() string

func (*LoginRequest) ProtoMessage

func (*LoginRequest) ProtoMessage()

func (*LoginRequest) ProtoReflect

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

func (*LoginRequest) Reset

func (x *LoginRequest) Reset()

func (*LoginRequest) String

func (x *LoginRequest) String() string

func (*LoginRequest) Validate

func (m *LoginRequest) Validate() error

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

type LoginRequestValidationError

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

LoginRequestValidationError is the validation error returned by LoginRequest.Validate if the designated constraints aren't met.

func (LoginRequestValidationError) Cause

Cause function returns cause value.

func (LoginRequestValidationError) Error

Error satisfies the builtin error interface

func (LoginRequestValidationError) ErrorName

func (e LoginRequestValidationError) ErrorName() string

ErrorName returns error name.

func (LoginRequestValidationError) Field

Field function returns field value.

func (LoginRequestValidationError) Key

Key function returns key value.

func (LoginRequestValidationError) Reason

Reason function returns reason value.

type LoginResponse

type LoginResponse struct {
	UserId uint64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*LoginResponse) Descriptor deprecated

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

Deprecated: Use LoginResponse.ProtoReflect.Descriptor instead.

func (*LoginResponse) GetUserId

func (x *LoginResponse) GetUserId() uint64

func (*LoginResponse) ProtoMessage

func (*LoginResponse) ProtoMessage()

func (*LoginResponse) ProtoReflect

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

func (*LoginResponse) Reset

func (x *LoginResponse) Reset()

func (*LoginResponse) String

func (x *LoginResponse) String() string

func (*LoginResponse) Validate

func (m *LoginResponse) Validate() error

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

type LoginResponseValidationError

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

LoginResponseValidationError is the validation error returned by LoginResponse.Validate if the designated constraints aren't met.

func (LoginResponseValidationError) Cause

Cause function returns cause value.

func (LoginResponseValidationError) Error

Error satisfies the builtin error interface

func (LoginResponseValidationError) ErrorName

func (e LoginResponseValidationError) ErrorName() string

ErrorName returns error name.

func (LoginResponseValidationError) Field

Field function returns field value.

func (LoginResponseValidationError) Key

Key function returns key value.

func (LoginResponseValidationError) Reason

Reason function returns reason value.

type LogoutRequest

type LogoutRequest struct {
	UserId uint64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*LogoutRequest) Descriptor deprecated

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

Deprecated: Use LogoutRequest.ProtoReflect.Descriptor instead.

func (*LogoutRequest) GetUserId

func (x *LogoutRequest) GetUserId() uint64

func (*LogoutRequest) ProtoMessage

func (*LogoutRequest) ProtoMessage()

func (*LogoutRequest) ProtoReflect

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

func (*LogoutRequest) Reset

func (x *LogoutRequest) Reset()

func (*LogoutRequest) String

func (x *LogoutRequest) String() string

func (*LogoutRequest) Validate

func (m *LogoutRequest) Validate() error

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

type LogoutRequestValidationError

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

LogoutRequestValidationError is the validation error returned by LogoutRequest.Validate if the designated constraints aren't met.

func (LogoutRequestValidationError) Cause

Cause function returns cause value.

func (LogoutRequestValidationError) Error

Error satisfies the builtin error interface

func (LogoutRequestValidationError) ErrorName

func (e LogoutRequestValidationError) ErrorName() string

ErrorName returns error name.

func (LogoutRequestValidationError) Field

Field function returns field value.

func (LogoutRequestValidationError) Key

Key function returns key value.

func (LogoutRequestValidationError) Reason

Reason function returns reason value.

type LogoutResponse

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

func (*LogoutResponse) Descriptor deprecated

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

Deprecated: Use LogoutResponse.ProtoReflect.Descriptor instead.

func (*LogoutResponse) ProtoMessage

func (*LogoutResponse) ProtoMessage()

func (*LogoutResponse) ProtoReflect

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

func (*LogoutResponse) Reset

func (x *LogoutResponse) Reset()

func (*LogoutResponse) String

func (x *LogoutResponse) String() string

func (*LogoutResponse) Validate

func (m *LogoutResponse) Validate() error

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

type LogoutResponseValidationError

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

LogoutResponseValidationError is the validation error returned by LogoutResponse.Validate if the designated constraints aren't met.

func (LogoutResponseValidationError) Cause

Cause function returns cause value.

func (LogoutResponseValidationError) Error

Error satisfies the builtin error interface

func (LogoutResponseValidationError) ErrorName

func (e LogoutResponseValidationError) ErrorName() string

ErrorName returns error name.

func (LogoutResponseValidationError) Field

Field function returns field value.

func (LogoutResponseValidationError) Key

Key function returns key value.

func (LogoutResponseValidationError) Reason

Reason function returns reason value.

type LogtouResponse

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

func (*LogtouResponse) Descriptor deprecated

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

Deprecated: Use LogtouResponse.ProtoReflect.Descriptor instead.

func (*LogtouResponse) ProtoMessage

func (*LogtouResponse) ProtoMessage()

func (*LogtouResponse) ProtoReflect

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

func (*LogtouResponse) Reset

func (x *LogtouResponse) Reset()

func (*LogtouResponse) String

func (x *LogtouResponse) String() string

func (*LogtouResponse) Validate

func (m *LogtouResponse) Validate() error

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

type LogtouResponseValidationError

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

LogtouResponseValidationError is the validation error returned by LogtouResponse.Validate if the designated constraints aren't met.

func (LogtouResponseValidationError) Cause

Cause function returns cause value.

func (LogtouResponseValidationError) Error

Error satisfies the builtin error interface

func (LogtouResponseValidationError) ErrorName

func (e LogtouResponseValidationError) ErrorName() string

ErrorName returns error name.

func (LogtouResponseValidationError) Field

Field function returns field value.

func (LogtouResponseValidationError) Key

Key function returns key value.

func (LogtouResponseValidationError) Reason

Reason function returns reason value.

type MusicShareDetail

type MusicShareDetail struct {
	ResourceUrl string `protobuf:"bytes,1,opt,name=resourceUrl,proto3" json:"resourceUrl,omitempty"`
	Source      uint64 `protobuf:"varint,2,opt,name=source,proto3" json:"source,omitempty"`
	// contains filtered or unexported fields
}

func (*MusicShareDetail) Descriptor deprecated

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

Deprecated: Use MusicShareDetail.ProtoReflect.Descriptor instead.

func (*MusicShareDetail) GetResourceUrl

func (x *MusicShareDetail) GetResourceUrl() string

func (*MusicShareDetail) GetSource

func (x *MusicShareDetail) GetSource() uint64

func (*MusicShareDetail) ProtoMessage

func (*MusicShareDetail) ProtoMessage()

func (*MusicShareDetail) ProtoReflect

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

func (*MusicShareDetail) Reset

func (x *MusicShareDetail) Reset()

func (*MusicShareDetail) String

func (x *MusicShareDetail) String() string

func (*MusicShareDetail) Validate

func (m *MusicShareDetail) Validate() error

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

type MusicShareDetailValidationError

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

MusicShareDetailValidationError is the validation error returned by MusicShareDetail.Validate if the designated constraints aren't met.

func (MusicShareDetailValidationError) Cause

Cause function returns cause value.

func (MusicShareDetailValidationError) Error

Error satisfies the builtin error interface

func (MusicShareDetailValidationError) ErrorName

ErrorName returns error name.

func (MusicShareDetailValidationError) Field

Field function returns field value.

func (MusicShareDetailValidationError) Key

Key function returns key value.

func (MusicShareDetailValidationError) Reason

Reason function returns reason value.

type OrgClient

OrgClient is the client API for Org service.

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

func NewOrgClient

func NewOrgClient(cc grpc.ClientConnInterface) OrgClient

type PictureDetail

type PictureDetail struct {
	List []*PictureInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
	Num  uint64         `protobuf:"varint,2,opt,name=num,proto3" json:"num,omitempty"`
	// contains filtered or unexported fields
}

func (*PictureDetail) Descriptor deprecated

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

Deprecated: Use PictureDetail.ProtoReflect.Descriptor instead.

func (*PictureDetail) GetList

func (x *PictureDetail) GetList() []*PictureInfo

func (*PictureDetail) GetNum

func (x *PictureDetail) GetNum() uint64

func (*PictureDetail) ProtoMessage

func (*PictureDetail) ProtoMessage()

func (*PictureDetail) ProtoReflect

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

func (*PictureDetail) Reset

func (x *PictureDetail) Reset()

func (*PictureDetail) String

func (x *PictureDetail) String() string

func (*PictureDetail) Validate

func (m *PictureDetail) Validate() error

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

type PictureDetailValidationError

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

PictureDetailValidationError is the validation error returned by PictureDetail.Validate if the designated constraints aren't met.

func (PictureDetailValidationError) Cause

Cause function returns cause value.

func (PictureDetailValidationError) Error

Error satisfies the builtin error interface

func (PictureDetailValidationError) ErrorName

func (e PictureDetailValidationError) ErrorName() string

ErrorName returns error name.

func (PictureDetailValidationError) Field

Field function returns field value.

func (PictureDetailValidationError) Key

Key function returns key value.

func (PictureDetailValidationError) Reason

Reason function returns reason value.

type PictureInfo

type PictureInfo struct {
	ResourceUrl string `protobuf:"bytes,1,opt,name=resource_url,json=resourceUrl,proto3" json:"resource_url,omitempty"`
	Size        uint64 `protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty"`
	// contains filtered or unexported fields
}

func (*PictureInfo) Descriptor deprecated

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

Deprecated: Use PictureInfo.ProtoReflect.Descriptor instead.

func (*PictureInfo) GetResourceUrl

func (x *PictureInfo) GetResourceUrl() string

func (*PictureInfo) GetSize

func (x *PictureInfo) GetSize() uint64

func (*PictureInfo) ProtoMessage

func (*PictureInfo) ProtoMessage()

func (*PictureInfo) ProtoReflect

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

func (*PictureInfo) Reset

func (x *PictureInfo) Reset()

func (*PictureInfo) String

func (x *PictureInfo) String() string

func (*PictureInfo) Validate

func (m *PictureInfo) Validate() error

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

type PictureInfoValidationError

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

PictureInfoValidationError is the validation error returned by PictureInfo.Validate if the designated constraints aren't met.

func (PictureInfoValidationError) Cause

Cause function returns cause value.

func (PictureInfoValidationError) Error

Error satisfies the builtin error interface

func (PictureInfoValidationError) ErrorName

func (e PictureInfoValidationError) ErrorName() string

ErrorName returns error name.

func (PictureInfoValidationError) Field

Field function returns field value.

func (PictureInfoValidationError) Key

Key function returns key value.

func (PictureInfoValidationError) Reason

Reason function returns reason value.

type ProjectClient

ProjectClient is the client API for Project service.

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

func NewProjectClient

func NewProjectClient(cc grpc.ClientConnInterface) ProjectClient

type ProjectInfo

type ProjectInfo struct {
	ProjectId uint64      `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	GroupId   uint32      `protobuf:"varint,2,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	Name      string      `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	Avatar    string      `protobuf:"bytes,4,opt,name=avatar,proto3" json:"avatar,omitempty"`
	Creator   *UserInfo   `protobuf:"bytes,5,opt,name=creator,proto3" json:"creator,omitempty"`
	Owner     *UserInfo   `protobuf:"bytes,6,opt,name=owner,proto3" json:"owner,omitempty"`
	Tags      []*Tags     `protobuf:"bytes,7,rep,name=tags,proto3" json:"tags,omitempty"`
	Visable   VisibleType `protobuf:"varint,8,opt,name=visable,proto3,enum=grapery.api.VisibleType" json:"visable,omitempty"`
	IsAchieve bool        `protobuf:"varint,9,opt,name=isAchieve,proto3" json:"isAchieve,omitempty"`
	IsClose   bool        `protobuf:"varint,10,opt,name=isClose,proto3" json:"isClose,omitempty"`
	// contains filtered or unexported fields
}

func (*ProjectInfo) Descriptor deprecated

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

Deprecated: Use ProjectInfo.ProtoReflect.Descriptor instead.

func (*ProjectInfo) GetAvatar

func (x *ProjectInfo) GetAvatar() string

func (*ProjectInfo) GetCreator

func (x *ProjectInfo) GetCreator() *UserInfo

func (*ProjectInfo) GetGroupId

func (x *ProjectInfo) GetGroupId() uint32

func (*ProjectInfo) GetIsAchieve

func (x *ProjectInfo) GetIsAchieve() bool

func (*ProjectInfo) GetIsClose

func (x *ProjectInfo) GetIsClose() bool

func (*ProjectInfo) GetName

func (x *ProjectInfo) GetName() string

func (*ProjectInfo) GetOwner

func (x *ProjectInfo) GetOwner() *UserInfo

func (*ProjectInfo) GetProjectId

func (x *ProjectInfo) GetProjectId() uint64

func (*ProjectInfo) GetTags

func (x *ProjectInfo) GetTags() []*Tags

func (*ProjectInfo) GetVisable

func (x *ProjectInfo) GetVisable() VisibleType

func (*ProjectInfo) ProtoMessage

func (*ProjectInfo) ProtoMessage()

func (*ProjectInfo) ProtoReflect

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

func (*ProjectInfo) Reset

func (x *ProjectInfo) Reset()

func (*ProjectInfo) String

func (x *ProjectInfo) String() string

func (*ProjectInfo) Validate

func (m *ProjectInfo) Validate() error

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

type ProjectInfoValidationError

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

ProjectInfoValidationError is the validation error returned by ProjectInfo.Validate if the designated constraints aren't met.

func (ProjectInfoValidationError) Cause

Cause function returns cause value.

func (ProjectInfoValidationError) Error

Error satisfies the builtin error interface

func (ProjectInfoValidationError) ErrorName

func (e ProjectInfoValidationError) ErrorName() string

ErrorName returns error name.

func (ProjectInfoValidationError) Field

Field function returns field value.

func (ProjectInfoValidationError) Key

Key function returns key value.

func (ProjectInfoValidationError) Reason

Reason function returns reason value.

type ProjectProfileInfo

type ProjectProfileInfo struct {
	ProjectId     uint64      `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	GroupId       uint32      `protobuf:"varint,2,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	Description   string      `protobuf:"bytes,3,opt,name=Description,proto3" json:"Description,omitempty"`
	WatchingCount uint64      `protobuf:"varint,5,opt,name=WatchingCount,proto3" json:"WatchingCount,omitempty"`
	InvolvedCount uint64      `protobuf:"varint,6,opt,name=InvolvedCount,proto3" json:"InvolvedCount,omitempty"`
	Avatar        string      `protobuf:"bytes,7,opt,name=Avatar,proto3" json:"Avatar,omitempty"`
	Visable       VisibleType `protobuf:"varint,8,opt,name=visable,proto3,enum=grapery.api.VisibleType" json:"visable,omitempty"`
	IsAchieve     bool        `protobuf:"varint,9,opt,name=isAchieve,proto3" json:"isAchieve,omitempty"`
	IsClose       bool        `protobuf:"varint,10,opt,name=isClose,proto3" json:"isClose,omitempty"`
	IsPrivate     bool        `protobuf:"varint,11,opt,name=isPrivate,proto3" json:"isPrivate,omitempty"`
	// contains filtered or unexported fields
}

func (*ProjectProfileInfo) Descriptor deprecated

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

Deprecated: Use ProjectProfileInfo.ProtoReflect.Descriptor instead.

func (*ProjectProfileInfo) GetAvatar

func (x *ProjectProfileInfo) GetAvatar() string

func (*ProjectProfileInfo) GetDescription

func (x *ProjectProfileInfo) GetDescription() string

func (*ProjectProfileInfo) GetGroupId

func (x *ProjectProfileInfo) GetGroupId() uint32

func (*ProjectProfileInfo) GetInvolvedCount

func (x *ProjectProfileInfo) GetInvolvedCount() uint64

func (*ProjectProfileInfo) GetIsAchieve

func (x *ProjectProfileInfo) GetIsAchieve() bool

func (*ProjectProfileInfo) GetIsClose

func (x *ProjectProfileInfo) GetIsClose() bool

func (*ProjectProfileInfo) GetIsPrivate

func (x *ProjectProfileInfo) GetIsPrivate() bool

func (*ProjectProfileInfo) GetProjectId

func (x *ProjectProfileInfo) GetProjectId() uint64

func (*ProjectProfileInfo) GetVisable

func (x *ProjectProfileInfo) GetVisable() VisibleType

func (*ProjectProfileInfo) GetWatchingCount

func (x *ProjectProfileInfo) GetWatchingCount() uint64

func (*ProjectProfileInfo) ProtoMessage

func (*ProjectProfileInfo) ProtoMessage()

func (*ProjectProfileInfo) ProtoReflect

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

func (*ProjectProfileInfo) Reset

func (x *ProjectProfileInfo) Reset()

func (*ProjectProfileInfo) String

func (x *ProjectProfileInfo) String() string

func (*ProjectProfileInfo) Validate

func (m *ProjectProfileInfo) Validate() error

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

type ProjectProfileInfoValidationError

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

ProjectProfileInfoValidationError is the validation error returned by ProjectProfileInfo.Validate if the designated constraints aren't met.

func (ProjectProfileInfoValidationError) Cause

Cause function returns cause value.

func (ProjectProfileInfoValidationError) Error

Error satisfies the builtin error interface

func (ProjectProfileInfoValidationError) ErrorName

ErrorName returns error name.

func (ProjectProfileInfoValidationError) Field

Field function returns field value.

func (ProjectProfileInfoValidationError) Key

Key function returns key value.

func (ProjectProfileInfoValidationError) Reason

Reason function returns reason value.

type RegisterRequest

type RegisterRequest struct {
	LoginType AuthType `protobuf:"varint,1,opt,name=login_type,json=loginType,proto3,enum=grapery.api.AuthType" json:"login_type,omitempty"`
	Account   string   `protobuf:"bytes,2,opt,name=account,proto3" json:"account,omitempty"`
	Password  string   `protobuf:"bytes,3,opt,name=password,proto3" json:"password,omitempty"`
	// contains filtered or unexported fields
}

func (*RegisterRequest) Descriptor deprecated

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

Deprecated: Use RegisterRequest.ProtoReflect.Descriptor instead.

func (*RegisterRequest) GetAccount

func (x *RegisterRequest) GetAccount() string

func (*RegisterRequest) GetLoginType

func (x *RegisterRequest) GetLoginType() AuthType

func (*RegisterRequest) GetPassword

func (x *RegisterRequest) GetPassword() string

func (*RegisterRequest) ProtoMessage

func (*RegisterRequest) ProtoMessage()

func (*RegisterRequest) ProtoReflect

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

func (*RegisterRequest) Reset

func (x *RegisterRequest) Reset()

func (*RegisterRequest) String

func (x *RegisterRequest) String() string

func (*RegisterRequest) Validate

func (m *RegisterRequest) Validate() error

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

type RegisterRequestValidationError

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

RegisterRequestValidationError is the validation error returned by RegisterRequest.Validate if the designated constraints aren't met.

func (RegisterRequestValidationError) Cause

Cause function returns cause value.

func (RegisterRequestValidationError) Error

Error satisfies the builtin error interface

func (RegisterRequestValidationError) ErrorName

func (e RegisterRequestValidationError) ErrorName() string

ErrorName returns error name.

func (RegisterRequestValidationError) Field

Field function returns field value.

func (RegisterRequestValidationError) Key

Key function returns key value.

func (RegisterRequestValidationError) Reason

Reason function returns reason value.

type RegisterResponse

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

func (*RegisterResponse) Descriptor deprecated

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

Deprecated: Use RegisterResponse.ProtoReflect.Descriptor instead.

func (*RegisterResponse) ProtoMessage

func (*RegisterResponse) ProtoMessage()

func (*RegisterResponse) ProtoReflect

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

func (*RegisterResponse) Reset

func (x *RegisterResponse) Reset()

func (*RegisterResponse) String

func (x *RegisterResponse) String() string

func (*RegisterResponse) Validate

func (m *RegisterResponse) Validate() error

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

type RegisterResponseValidationError

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

RegisterResponseValidationError is the validation error returned by RegisterResponse.Validate if the designated constraints aren't met.

func (RegisterResponseValidationError) Cause

Cause function returns cause value.

func (RegisterResponseValidationError) Error

Error satisfies the builtin error interface

func (RegisterResponseValidationError) ErrorName

ErrorName returns error name.

func (RegisterResponseValidationError) Field

Field function returns field value.

func (RegisterResponseValidationError) Key

Key function returns key value.

func (RegisterResponseValidationError) Reason

Reason function returns reason value.

type ResetPasswordRequest

type ResetPasswordRequest struct {
	LoginType AuthType `protobuf:"varint,1,opt,name=login_type,json=loginType,proto3,enum=grapery.api.AuthType" json:"login_type,omitempty"`
	UserId    uint64   `protobuf:"varint,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	OldPwd    string   `protobuf:"bytes,3,opt,name=oldPwd,proto3" json:"oldPwd,omitempty"`
	NewPwd    string   `protobuf:"bytes,4,opt,name=newPwd,proto3" json:"newPwd,omitempty"`
	// contains filtered or unexported fields
}

func (*ResetPasswordRequest) Descriptor deprecated

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

Deprecated: Use ResetPasswordRequest.ProtoReflect.Descriptor instead.

func (*ResetPasswordRequest) GetLoginType

func (x *ResetPasswordRequest) GetLoginType() AuthType

func (*ResetPasswordRequest) GetNewPwd

func (x *ResetPasswordRequest) GetNewPwd() string

func (*ResetPasswordRequest) GetOldPwd

func (x *ResetPasswordRequest) GetOldPwd() string

func (*ResetPasswordRequest) GetUserId

func (x *ResetPasswordRequest) GetUserId() uint64

func (*ResetPasswordRequest) ProtoMessage

func (*ResetPasswordRequest) ProtoMessage()

func (*ResetPasswordRequest) ProtoReflect

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

func (*ResetPasswordRequest) Reset

func (x *ResetPasswordRequest) Reset()

func (*ResetPasswordRequest) String

func (x *ResetPasswordRequest) String() string

func (*ResetPasswordRequest) Validate

func (m *ResetPasswordRequest) Validate() error

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

type ResetPasswordRequestValidationError

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

ResetPasswordRequestValidationError is the validation error returned by ResetPasswordRequest.Validate if the designated constraints aren't met.

func (ResetPasswordRequestValidationError) Cause

Cause function returns cause value.

func (ResetPasswordRequestValidationError) Error

Error satisfies the builtin error interface

func (ResetPasswordRequestValidationError) ErrorName

ErrorName returns error name.

func (ResetPasswordRequestValidationError) Field

Field function returns field value.

func (ResetPasswordRequestValidationError) Key

Key function returns key value.

func (ResetPasswordRequestValidationError) Reason

Reason function returns reason value.

type ResetPasswordResponse

type ResetPasswordResponse struct {
	UserId uint64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*ResetPasswordResponse) Descriptor deprecated

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

Deprecated: Use ResetPasswordResponse.ProtoReflect.Descriptor instead.

func (*ResetPasswordResponse) GetUserId

func (x *ResetPasswordResponse) GetUserId() uint64

func (*ResetPasswordResponse) ProtoMessage

func (*ResetPasswordResponse) ProtoMessage()

func (*ResetPasswordResponse) ProtoReflect

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

func (*ResetPasswordResponse) Reset

func (x *ResetPasswordResponse) Reset()

func (*ResetPasswordResponse) String

func (x *ResetPasswordResponse) String() string

func (*ResetPasswordResponse) Validate

func (m *ResetPasswordResponse) Validate() error

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

type ResetPasswordResponseValidationError

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

ResetPasswordResponseValidationError is the validation error returned by ResetPasswordResponse.Validate if the designated constraints aren't met.

func (ResetPasswordResponseValidationError) Cause

Cause function returns cause value.

func (ResetPasswordResponseValidationError) Error

Error satisfies the builtin error interface

func (ResetPasswordResponseValidationError) ErrorName

ErrorName returns error name.

func (ResetPasswordResponseValidationError) Field

Field function returns field value.

func (ResetPasswordResponseValidationError) Key

Key function returns key value.

func (ResetPasswordResponseValidationError) Reason

Reason function returns reason value.

type SearchAllProjectRequest

type SearchAllProjectRequest struct {
	UserId uint64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Name   string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Offset uint64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
	Number uint64 `protobuf:"varint,4,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchAllProjectRequest) Descriptor deprecated

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

Deprecated: Use SearchAllProjectRequest.ProtoReflect.Descriptor instead.

func (*SearchAllProjectRequest) GetName

func (x *SearchAllProjectRequest) GetName() string

func (*SearchAllProjectRequest) GetNumber

func (x *SearchAllProjectRequest) GetNumber() uint64

func (*SearchAllProjectRequest) GetOffset

func (x *SearchAllProjectRequest) GetOffset() uint64

func (*SearchAllProjectRequest) GetUserId

func (x *SearchAllProjectRequest) GetUserId() uint64

func (*SearchAllProjectRequest) ProtoMessage

func (*SearchAllProjectRequest) ProtoMessage()

func (*SearchAllProjectRequest) ProtoReflect

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

func (*SearchAllProjectRequest) Reset

func (x *SearchAllProjectRequest) Reset()

func (*SearchAllProjectRequest) String

func (x *SearchAllProjectRequest) String() string

func (*SearchAllProjectRequest) Validate

func (m *SearchAllProjectRequest) Validate() error

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

type SearchAllProjectRequestValidationError

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

SearchAllProjectRequestValidationError is the validation error returned by SearchAllProjectRequest.Validate if the designated constraints aren't met.

func (SearchAllProjectRequestValidationError) Cause

Cause function returns cause value.

func (SearchAllProjectRequestValidationError) Error

Error satisfies the builtin error interface

func (SearchAllProjectRequestValidationError) ErrorName

ErrorName returns error name.

func (SearchAllProjectRequestValidationError) Field

Field function returns field value.

func (SearchAllProjectRequestValidationError) Key

Key function returns key value.

func (SearchAllProjectRequestValidationError) Reason

Reason function returns reason value.

type SearchAllProjectResponse

type SearchAllProjectResponse struct {
	UserId uint64         `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	List   []*ProjectInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list,omitempty"`
	Offset uint64         `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
	Number uint64         `protobuf:"varint,4,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchAllProjectResponse) Descriptor deprecated

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

Deprecated: Use SearchAllProjectResponse.ProtoReflect.Descriptor instead.

func (*SearchAllProjectResponse) GetList

func (x *SearchAllProjectResponse) GetList() []*ProjectInfo

func (*SearchAllProjectResponse) GetNumber

func (x *SearchAllProjectResponse) GetNumber() uint64

func (*SearchAllProjectResponse) GetOffset

func (x *SearchAllProjectResponse) GetOffset() uint64

func (*SearchAllProjectResponse) GetUserId

func (x *SearchAllProjectResponse) GetUserId() uint64

func (*SearchAllProjectResponse) ProtoMessage

func (*SearchAllProjectResponse) ProtoMessage()

func (*SearchAllProjectResponse) ProtoReflect

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

func (*SearchAllProjectResponse) Reset

func (x *SearchAllProjectResponse) Reset()

func (*SearchAllProjectResponse) String

func (x *SearchAllProjectResponse) String() string

func (*SearchAllProjectResponse) Validate

func (m *SearchAllProjectResponse) Validate() error

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

type SearchAllProjectResponseValidationError

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

SearchAllProjectResponseValidationError is the validation error returned by SearchAllProjectResponse.Validate if the designated constraints aren't met.

func (SearchAllProjectResponseValidationError) Cause

Cause function returns cause value.

func (SearchAllProjectResponseValidationError) Error

Error satisfies the builtin error interface

func (SearchAllProjectResponseValidationError) ErrorName

ErrorName returns error name.

func (SearchAllProjectResponseValidationError) Field

Field function returns field value.

func (SearchAllProjectResponseValidationError) Key

Key function returns key value.

func (SearchAllProjectResponseValidationError) Reason

Reason function returns reason value.

type SearchGroupReqeust

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

func (*SearchGroupReqeust) Descriptor deprecated

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

Deprecated: Use SearchGroupReqeust.ProtoReflect.Descriptor instead.

func (*SearchGroupReqeust) GetName

func (x *SearchGroupReqeust) GetName() string

func (*SearchGroupReqeust) ProtoMessage

func (*SearchGroupReqeust) ProtoMessage()

func (*SearchGroupReqeust) ProtoReflect

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

func (*SearchGroupReqeust) Reset

func (x *SearchGroupReqeust) Reset()

func (*SearchGroupReqeust) String

func (x *SearchGroupReqeust) String() string

func (*SearchGroupReqeust) Validate

func (m *SearchGroupReqeust) Validate() error

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

type SearchGroupReqeustValidationError

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

SearchGroupReqeustValidationError is the validation error returned by SearchGroupReqeust.Validate if the designated constraints aren't met.

func (SearchGroupReqeustValidationError) Cause

Cause function returns cause value.

func (SearchGroupReqeustValidationError) Error

Error satisfies the builtin error interface

func (SearchGroupReqeustValidationError) ErrorName

ErrorName returns error name.

func (SearchGroupReqeustValidationError) Field

Field function returns field value.

func (SearchGroupReqeustValidationError) Key

Key function returns key value.

func (SearchGroupReqeustValidationError) Reason

Reason function returns reason value.

type SearchGroupResponse

type SearchGroupResponse struct {
	List   []*GroupInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
	Offset uint64       `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
	Number uint64       `protobuf:"varint,3,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchGroupResponse) Descriptor deprecated

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

Deprecated: Use SearchGroupResponse.ProtoReflect.Descriptor instead.

func (*SearchGroupResponse) GetList

func (x *SearchGroupResponse) GetList() []*GroupInfo

func (*SearchGroupResponse) GetNumber

func (x *SearchGroupResponse) GetNumber() uint64

func (*SearchGroupResponse) GetOffset

func (x *SearchGroupResponse) GetOffset() uint64

func (*SearchGroupResponse) ProtoMessage

func (*SearchGroupResponse) ProtoMessage()

func (*SearchGroupResponse) ProtoReflect

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

func (*SearchGroupResponse) Reset

func (x *SearchGroupResponse) Reset()

func (*SearchGroupResponse) String

func (x *SearchGroupResponse) String() string

func (*SearchGroupResponse) Validate

func (m *SearchGroupResponse) Validate() error

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

type SearchGroupResponseValidationError

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

SearchGroupResponseValidationError is the validation error returned by SearchGroupResponse.Validate if the designated constraints aren't met.

func (SearchGroupResponseValidationError) Cause

Cause function returns cause value.

func (SearchGroupResponseValidationError) Error

Error satisfies the builtin error interface

func (SearchGroupResponseValidationError) ErrorName

ErrorName returns error name.

func (SearchGroupResponseValidationError) Field

Field function returns field value.

func (SearchGroupResponseValidationError) Key

Key function returns key value.

func (SearchGroupResponseValidationError) Reason

Reason function returns reason value.

type SearchProjectRequest

type SearchProjectRequest struct {
	GroupId uint64 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	Name    string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Offset  uint64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
	Number  uint64 `protobuf:"varint,4,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchProjectRequest) Descriptor deprecated

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

Deprecated: Use SearchProjectRequest.ProtoReflect.Descriptor instead.

func (*SearchProjectRequest) GetGroupId

func (x *SearchProjectRequest) GetGroupId() uint64

func (*SearchProjectRequest) GetName

func (x *SearchProjectRequest) GetName() string

func (*SearchProjectRequest) GetNumber

func (x *SearchProjectRequest) GetNumber() uint64

func (*SearchProjectRequest) GetOffset

func (x *SearchProjectRequest) GetOffset() uint64

func (*SearchProjectRequest) ProtoMessage

func (*SearchProjectRequest) ProtoMessage()

func (*SearchProjectRequest) ProtoReflect

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

func (*SearchProjectRequest) Reset

func (x *SearchProjectRequest) Reset()

func (*SearchProjectRequest) String

func (x *SearchProjectRequest) String() string

func (*SearchProjectRequest) Validate

func (m *SearchProjectRequest) Validate() error

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

type SearchProjectRequestValidationError

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

SearchProjectRequestValidationError is the validation error returned by SearchProjectRequest.Validate if the designated constraints aren't met.

func (SearchProjectRequestValidationError) Cause

Cause function returns cause value.

func (SearchProjectRequestValidationError) Error

Error satisfies the builtin error interface

func (SearchProjectRequestValidationError) ErrorName

ErrorName returns error name.

func (SearchProjectRequestValidationError) Field

Field function returns field value.

func (SearchProjectRequestValidationError) Key

Key function returns key value.

func (SearchProjectRequestValidationError) Reason

Reason function returns reason value.

type SearchProjectResponse

type SearchProjectResponse struct {
	GroupId uint64         `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	List    []*ProjectInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list,omitempty"`
	Offset  uint64         `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
	Number  uint64         `protobuf:"varint,4,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchProjectResponse) Descriptor deprecated

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

Deprecated: Use SearchProjectResponse.ProtoReflect.Descriptor instead.

func (*SearchProjectResponse) GetGroupId

func (x *SearchProjectResponse) GetGroupId() uint64

func (*SearchProjectResponse) GetList

func (x *SearchProjectResponse) GetList() []*ProjectInfo

func (*SearchProjectResponse) GetNumber

func (x *SearchProjectResponse) GetNumber() uint64

func (*SearchProjectResponse) GetOffset

func (x *SearchProjectResponse) GetOffset() uint64

func (*SearchProjectResponse) ProtoMessage

func (*SearchProjectResponse) ProtoMessage()

func (*SearchProjectResponse) ProtoReflect

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

func (*SearchProjectResponse) Reset

func (x *SearchProjectResponse) Reset()

func (*SearchProjectResponse) String

func (x *SearchProjectResponse) String() string

func (*SearchProjectResponse) Validate

func (m *SearchProjectResponse) Validate() error

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

type SearchProjectResponseValidationError

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

SearchProjectResponseValidationError is the validation error returned by SearchProjectResponse.Validate if the designated constraints aren't met.

func (SearchProjectResponseValidationError) Cause

Cause function returns cause value.

func (SearchProjectResponseValidationError) Error

Error satisfies the builtin error interface

func (SearchProjectResponseValidationError) ErrorName

ErrorName returns error name.

func (SearchProjectResponseValidationError) Field

Field function returns field value.

func (SearchProjectResponseValidationError) Key

Key function returns key value.

func (SearchProjectResponseValidationError) Reason

Reason function returns reason value.

type SearchUserRequest

type SearchUserRequest struct {
	Name    string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	GroupId uint64 `protobuf:"varint,2,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	Offset  uint64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
	Number  uint64 `protobuf:"varint,4,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchUserRequest) Descriptor deprecated

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

Deprecated: Use SearchUserRequest.ProtoReflect.Descriptor instead.

func (*SearchUserRequest) GetGroupId

func (x *SearchUserRequest) GetGroupId() uint64

func (*SearchUserRequest) GetName

func (x *SearchUserRequest) GetName() string

func (*SearchUserRequest) GetNumber

func (x *SearchUserRequest) GetNumber() uint64

func (*SearchUserRequest) GetOffset

func (x *SearchUserRequest) GetOffset() uint64

func (*SearchUserRequest) ProtoMessage

func (*SearchUserRequest) ProtoMessage()

func (*SearchUserRequest) ProtoReflect

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

func (*SearchUserRequest) Reset

func (x *SearchUserRequest) Reset()

func (*SearchUserRequest) String

func (x *SearchUserRequest) String() string

func (*SearchUserRequest) Validate

func (m *SearchUserRequest) Validate() error

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

type SearchUserRequestValidationError

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

SearchUserRequestValidationError is the validation error returned by SearchUserRequest.Validate if the designated constraints aren't met.

func (SearchUserRequestValidationError) Cause

Cause function returns cause value.

func (SearchUserRequestValidationError) Error

Error satisfies the builtin error interface

func (SearchUserRequestValidationError) ErrorName

ErrorName returns error name.

func (SearchUserRequestValidationError) Field

Field function returns field value.

func (SearchUserRequestValidationError) Key

Key function returns key value.

func (SearchUserRequestValidationError) Reason

Reason function returns reason value.

type SearchUserResponse

type SearchUserResponse struct {
	List   []*UserInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
	Offset uint64      `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
	Number uint64      `protobuf:"varint,3,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchUserResponse) Descriptor deprecated

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

Deprecated: Use SearchUserResponse.ProtoReflect.Descriptor instead.

func (*SearchUserResponse) GetList

func (x *SearchUserResponse) GetList() []*UserInfo

func (*SearchUserResponse) GetNumber

func (x *SearchUserResponse) GetNumber() uint64

func (*SearchUserResponse) GetOffset

func (x *SearchUserResponse) GetOffset() uint64

func (*SearchUserResponse) ProtoMessage

func (*SearchUserResponse) ProtoMessage()

func (*SearchUserResponse) ProtoReflect

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

func (*SearchUserResponse) Reset

func (x *SearchUserResponse) Reset()

func (*SearchUserResponse) String

func (x *SearchUserResponse) String() string

func (*SearchUserResponse) Validate

func (m *SearchUserResponse) Validate() error

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

type SearchUserResponseValidationError

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

SearchUserResponseValidationError is the validation error returned by SearchUserResponse.Validate if the designated constraints aren't met.

func (SearchUserResponseValidationError) Cause

Cause function returns cause value.

func (SearchUserResponseValidationError) Error

Error satisfies the builtin error interface

func (SearchUserResponseValidationError) ErrorName

ErrorName returns error name.

func (SearchUserResponseValidationError) Field

Field function returns field value.

func (SearchUserResponseValidationError) Key

Key function returns key value.

func (SearchUserResponseValidationError) Reason

Reason function returns reason value.

type ShareDetail

type ShareDetail struct {
	ResourceUrl string `protobuf:"bytes,1,opt,name=resourceUrl,proto3" json:"resourceUrl,omitempty"`
	Source      uint64 `protobuf:"varint,2,opt,name=source,proto3" json:"source,omitempty"`
	// contains filtered or unexported fields
}

func (*ShareDetail) Descriptor deprecated

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

Deprecated: Use ShareDetail.ProtoReflect.Descriptor instead.

func (*ShareDetail) GetResourceUrl

func (x *ShareDetail) GetResourceUrl() string

func (*ShareDetail) GetSource

func (x *ShareDetail) GetSource() uint64

func (*ShareDetail) ProtoMessage

func (*ShareDetail) ProtoMessage()

func (*ShareDetail) ProtoReflect

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

func (*ShareDetail) Reset

func (x *ShareDetail) Reset()

func (*ShareDetail) String

func (x *ShareDetail) String() string

func (*ShareDetail) Validate

func (m *ShareDetail) Validate() error

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

type ShareDetailValidationError

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

ShareDetailValidationError is the validation error returned by ShareDetail.Validate if the designated constraints aren't met.

func (ShareDetailValidationError) Cause

Cause function returns cause value.

func (ShareDetailValidationError) Error

Error satisfies the builtin error interface

func (ShareDetailValidationError) ErrorName

func (e ShareDetailValidationError) ErrorName() string

ErrorName returns error name.

func (ShareDetailValidationError) Field

Field function returns field value.

func (ShareDetailValidationError) Key

Key function returns key value.

func (ShareDetailValidationError) Reason

Reason function returns reason value.

type Tags

type Tags struct {
	GroupId   uint64 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	CreatorID uint64 `protobuf:"varint,2,opt,name=creatorID,proto3" json:"creatorID,omitempty"`
	Name      string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*Tags) Descriptor deprecated

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

Deprecated: Use Tags.ProtoReflect.Descriptor instead.

func (*Tags) GetCreatorID

func (x *Tags) GetCreatorID() uint64

func (*Tags) GetGroupId

func (x *Tags) GetGroupId() uint64

func (*Tags) GetName

func (x *Tags) GetName() string

func (*Tags) ProtoMessage

func (*Tags) ProtoMessage()

func (*Tags) ProtoReflect

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

func (*Tags) Reset

func (x *Tags) Reset()

func (*Tags) String

func (x *Tags) String() string

func (*Tags) Validate

func (m *Tags) Validate() error

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

type TagsValidationError

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

TagsValidationError is the validation error returned by Tags.Validate if the designated constraints aren't met.

func (TagsValidationError) Cause

func (e TagsValidationError) Cause() error

Cause function returns cause value.

func (TagsValidationError) Error

func (e TagsValidationError) Error() string

Error satisfies the builtin error interface

func (TagsValidationError) ErrorName

func (e TagsValidationError) ErrorName() string

ErrorName returns error name.

func (TagsValidationError) Field

func (e TagsValidationError) Field() string

Field function returns field value.

func (TagsValidationError) Key

func (e TagsValidationError) Key() bool

Key function returns key value.

func (TagsValidationError) Reason

func (e TagsValidationError) Reason() string

Reason function returns reason value.

type UnWatchProjectReqeust

type UnWatchProjectReqeust struct {
	GroupId   uint64 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	ProjectId uint64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	UserId    uint64 `protobuf:"varint,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UnWatchProjectReqeust) Descriptor deprecated

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

Deprecated: Use UnWatchProjectReqeust.ProtoReflect.Descriptor instead.

func (*UnWatchProjectReqeust) GetGroupId

func (x *UnWatchProjectReqeust) GetGroupId() uint64

func (*UnWatchProjectReqeust) GetProjectId

func (x *UnWatchProjectReqeust) GetProjectId() uint64

func (*UnWatchProjectReqeust) GetUserId

func (x *UnWatchProjectReqeust) GetUserId() uint64

func (*UnWatchProjectReqeust) ProtoMessage

func (*UnWatchProjectReqeust) ProtoMessage()

func (*UnWatchProjectReqeust) ProtoReflect

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

func (*UnWatchProjectReqeust) Reset

func (x *UnWatchProjectReqeust) Reset()

func (*UnWatchProjectReqeust) String

func (x *UnWatchProjectReqeust) String() string

func (*UnWatchProjectReqeust) Validate

func (m *UnWatchProjectReqeust) Validate() error

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

type UnWatchProjectReqeustValidationError

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

UnWatchProjectReqeustValidationError is the validation error returned by UnWatchProjectReqeust.Validate if the designated constraints aren't met.

func (UnWatchProjectReqeustValidationError) Cause

Cause function returns cause value.

func (UnWatchProjectReqeustValidationError) Error

Error satisfies the builtin error interface

func (UnWatchProjectReqeustValidationError) ErrorName

ErrorName returns error name.

func (UnWatchProjectReqeustValidationError) Field

Field function returns field value.

func (UnWatchProjectReqeustValidationError) Key

Key function returns key value.

func (UnWatchProjectReqeustValidationError) Reason

Reason function returns reason value.

type UnWatchProjectResponse

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

func (*UnWatchProjectResponse) Descriptor deprecated

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

Deprecated: Use UnWatchProjectResponse.ProtoReflect.Descriptor instead.

func (*UnWatchProjectResponse) ProtoMessage

func (*UnWatchProjectResponse) ProtoMessage()

func (*UnWatchProjectResponse) ProtoReflect

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

func (*UnWatchProjectResponse) Reset

func (x *UnWatchProjectResponse) Reset()

func (*UnWatchProjectResponse) String

func (x *UnWatchProjectResponse) String() string

func (*UnWatchProjectResponse) Validate

func (m *UnWatchProjectResponse) Validate() error

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

type UnWatchProjectResponseValidationError

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

UnWatchProjectResponseValidationError is the validation error returned by UnWatchProjectResponse.Validate if the designated constraints aren't met.

func (UnWatchProjectResponseValidationError) Cause

Cause function returns cause value.

func (UnWatchProjectResponseValidationError) Error

Error satisfies the builtin error interface

func (UnWatchProjectResponseValidationError) ErrorName

ErrorName returns error name.

func (UnWatchProjectResponseValidationError) Field

Field function returns field value.

func (UnWatchProjectResponseValidationError) Key

Key function returns key value.

func (UnWatchProjectResponseValidationError) Reason

Reason function returns reason value.

type UnimplementedAuthServer

type UnimplementedAuthServer struct {
}

UnimplementedAuthServer can be embedded to have forward compatible implementations.

func (*UnimplementedAuthServer) Login

func (*UnimplementedAuthServer) Logout

func (*UnimplementedAuthServer) Register

func (*UnimplementedAuthServer) ResetPwd

type UnimplementedItemServer

type UnimplementedItemServer struct {
}

UnimplementedItemServer can be embedded to have forward compatible implementations.

func (*UnimplementedItemServer) CreateItem

func (*UnimplementedItemServer) DeleteItem

func (*UnimplementedItemServer) GetGroupItems

func (*UnimplementedItemServer) GetItem

func (*UnimplementedItemServer) GetProjectItems

func (*UnimplementedItemServer) GetUserItems

func (*UnimplementedItemServer) LikeItem

func (*UnimplementedItemServer) UpdateItem

type UnimplementedOrgServer

type UnimplementedOrgServer struct {
}

UnimplementedOrgServer can be embedded to have forward compatible implementations.

func (*UnimplementedOrgServer) CreateGroup

func (*UnimplementedOrgServer) DeleteGroup

func (*UnimplementedOrgServer) FetchGroupMembers

func (*UnimplementedOrgServer) GetGroup

func (*UnimplementedOrgServer) GetGroupActives

func (*UnimplementedOrgServer) JoinGroup

func (*UnimplementedOrgServer) LeaveGroup

func (*UnimplementedOrgServer) SearchGroup

func (*UnimplementedOrgServer) UpdateGroupInfo

type UnimplementedProjectServer

type UnimplementedProjectServer struct {
}

UnimplementedProjectServer can be embedded to have forward compatible implementations.

func (*UnimplementedProjectServer) CreateProject

func (*UnimplementedProjectServer) DeleteProject

func (*UnimplementedProjectServer) ExploreProject

func (*UnimplementedProjectServer) GetProject

func (*UnimplementedProjectServer) GetProjectProfile

func (*UnimplementedProjectServer) SearchGroupProject

func (*UnimplementedProjectServer) SearchProject

func (*UnimplementedProjectServer) UnWatchProject

func (*UnimplementedProjectServer) UpdateProject

func (*UnimplementedProjectServer) WatchProject

type UnimplementedUserServer

type UnimplementedUserServer struct {
}

UnimplementedUserServer can be embedded to have forward compatible implementations.

func (*UnimplementedUserServer) FetchUserActives

func (*UnimplementedUserServer) SearchUser

func (*UnimplementedUserServer) UpdateUserAvator

func (*UnimplementedUserServer) UserGroup

func (*UnimplementedUserServer) UserInfo

func (*UnimplementedUserServer) UserUpdate

func (*UnimplementedUserServer) UserWatching

type UpdateGroupInfoRequest

type UpdateGroupInfoRequest struct {
	GroupId uint64     `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	Info    *GroupInfo `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateGroupInfoRequest) Descriptor deprecated

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

Deprecated: Use UpdateGroupInfoRequest.ProtoReflect.Descriptor instead.

func (*UpdateGroupInfoRequest) GetGroupId

func (x *UpdateGroupInfoRequest) GetGroupId() uint64

func (*UpdateGroupInfoRequest) GetInfo

func (x *UpdateGroupInfoRequest) GetInfo() *GroupInfo

func (*UpdateGroupInfoRequest) ProtoMessage

func (*UpdateGroupInfoRequest) ProtoMessage()

func (*UpdateGroupInfoRequest) ProtoReflect

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

func (*UpdateGroupInfoRequest) Reset

func (x *UpdateGroupInfoRequest) Reset()

func (*UpdateGroupInfoRequest) String

func (x *UpdateGroupInfoRequest) String() string

func (*UpdateGroupInfoRequest) Validate

func (m *UpdateGroupInfoRequest) Validate() error

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

type UpdateGroupInfoRequestValidationError

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

UpdateGroupInfoRequestValidationError is the validation error returned by UpdateGroupInfoRequest.Validate if the designated constraints aren't met.

func (UpdateGroupInfoRequestValidationError) Cause

Cause function returns cause value.

func (UpdateGroupInfoRequestValidationError) Error

Error satisfies the builtin error interface

func (UpdateGroupInfoRequestValidationError) ErrorName

ErrorName returns error name.

func (UpdateGroupInfoRequestValidationError) Field

Field function returns field value.

func (UpdateGroupInfoRequestValidationError) Key

Key function returns key value.

func (UpdateGroupInfoRequestValidationError) Reason

Reason function returns reason value.

type UpdateGroupInfoResponse

type UpdateGroupInfoResponse struct {
	Info *GroupInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateGroupInfoResponse) Descriptor deprecated

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

Deprecated: Use UpdateGroupInfoResponse.ProtoReflect.Descriptor instead.

func (*UpdateGroupInfoResponse) GetInfo

func (x *UpdateGroupInfoResponse) GetInfo() *GroupInfo

func (*UpdateGroupInfoResponse) ProtoMessage

func (*UpdateGroupInfoResponse) ProtoMessage()

func (*UpdateGroupInfoResponse) ProtoReflect

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

func (*UpdateGroupInfoResponse) Reset

func (x *UpdateGroupInfoResponse) Reset()

func (*UpdateGroupInfoResponse) String

func (x *UpdateGroupInfoResponse) String() string

func (*UpdateGroupInfoResponse) Validate

func (m *UpdateGroupInfoResponse) Validate() error

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

type UpdateGroupInfoResponseValidationError

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

UpdateGroupInfoResponseValidationError is the validation error returned by UpdateGroupInfoResponse.Validate if the designated constraints aren't met.

func (UpdateGroupInfoResponseValidationError) Cause

Cause function returns cause value.

func (UpdateGroupInfoResponseValidationError) Error

Error satisfies the builtin error interface

func (UpdateGroupInfoResponseValidationError) ErrorName

ErrorName returns error name.

func (UpdateGroupInfoResponseValidationError) Field

Field function returns field value.

func (UpdateGroupInfoResponseValidationError) Key

Key function returns key value.

func (UpdateGroupInfoResponseValidationError) Reason

Reason function returns reason value.

type UpdateItemRequest

type UpdateItemRequest struct {
	GroupId   uint64    `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	ProjectId uint64    `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	ItemId    uint64    `protobuf:"varint,3,opt,name=item_id,json=itemId,proto3" json:"item_id,omitempty"`
	Info      *ItemInfo `protobuf:"bytes,4,opt,name=info,proto3" json:"info,omitempty"`
	UserId    uint64    `protobuf:"varint,5,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateItemRequest) Descriptor deprecated

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

Deprecated: Use UpdateItemRequest.ProtoReflect.Descriptor instead.

func (*UpdateItemRequest) GetGroupId

func (x *UpdateItemRequest) GetGroupId() uint64

func (*UpdateItemRequest) GetInfo

func (x *UpdateItemRequest) GetInfo() *ItemInfo

func (*UpdateItemRequest) GetItemId

func (x *UpdateItemRequest) GetItemId() uint64

func (*UpdateItemRequest) GetProjectId

func (x *UpdateItemRequest) GetProjectId() uint64

func (*UpdateItemRequest) GetUserId

func (x *UpdateItemRequest) GetUserId() uint64

func (*UpdateItemRequest) ProtoMessage

func (*UpdateItemRequest) ProtoMessage()

func (*UpdateItemRequest) ProtoReflect

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

func (*UpdateItemRequest) Reset

func (x *UpdateItemRequest) Reset()

func (*UpdateItemRequest) String

func (x *UpdateItemRequest) String() string

func (*UpdateItemRequest) Validate

func (m *UpdateItemRequest) Validate() error

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

type UpdateItemRequestValidationError

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

UpdateItemRequestValidationError is the validation error returned by UpdateItemRequest.Validate if the designated constraints aren't met.

func (UpdateItemRequestValidationError) Cause

Cause function returns cause value.

func (UpdateItemRequestValidationError) Error

Error satisfies the builtin error interface

func (UpdateItemRequestValidationError) ErrorName

ErrorName returns error name.

func (UpdateItemRequestValidationError) Field

Field function returns field value.

func (UpdateItemRequestValidationError) Key

Key function returns key value.

func (UpdateItemRequestValidationError) Reason

Reason function returns reason value.

type UpdateItemResponse

type UpdateItemResponse struct {
	Info *ItemInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateItemResponse) Descriptor deprecated

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

Deprecated: Use UpdateItemResponse.ProtoReflect.Descriptor instead.

func (*UpdateItemResponse) GetInfo

func (x *UpdateItemResponse) GetInfo() *ItemInfo

func (*UpdateItemResponse) ProtoMessage

func (*UpdateItemResponse) ProtoMessage()

func (*UpdateItemResponse) ProtoReflect

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

func (*UpdateItemResponse) Reset

func (x *UpdateItemResponse) Reset()

func (*UpdateItemResponse) String

func (x *UpdateItemResponse) String() string

func (*UpdateItemResponse) Validate

func (m *UpdateItemResponse) Validate() error

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

type UpdateItemResponseValidationError

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

UpdateItemResponseValidationError is the validation error returned by UpdateItemResponse.Validate if the designated constraints aren't met.

func (UpdateItemResponseValidationError) Cause

Cause function returns cause value.

func (UpdateItemResponseValidationError) Error

Error satisfies the builtin error interface

func (UpdateItemResponseValidationError) ErrorName

ErrorName returns error name.

func (UpdateItemResponseValidationError) Field

Field function returns field value.

func (UpdateItemResponseValidationError) Key

Key function returns key value.

func (UpdateItemResponseValidationError) Reason

Reason function returns reason value.

type UpdateProjectProfileRequest

type UpdateProjectProfileRequest struct {
	GroupId   uint64              `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	ProjectId uint64              `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	UserId    uint64              `protobuf:"varint,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Info      *ProjectProfileInfo `protobuf:"bytes,4,opt,name=info,proto3" json:"info,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateProjectProfileRequest) Descriptor deprecated

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

Deprecated: Use UpdateProjectProfileRequest.ProtoReflect.Descriptor instead.

func (*UpdateProjectProfileRequest) GetGroupId

func (x *UpdateProjectProfileRequest) GetGroupId() uint64

func (*UpdateProjectProfileRequest) GetInfo

func (*UpdateProjectProfileRequest) GetProjectId

func (x *UpdateProjectProfileRequest) GetProjectId() uint64

func (*UpdateProjectProfileRequest) GetUserId

func (x *UpdateProjectProfileRequest) GetUserId() uint64

func (*UpdateProjectProfileRequest) ProtoMessage

func (*UpdateProjectProfileRequest) ProtoMessage()

func (*UpdateProjectProfileRequest) ProtoReflect

func (*UpdateProjectProfileRequest) Reset

func (x *UpdateProjectProfileRequest) Reset()

func (*UpdateProjectProfileRequest) String

func (x *UpdateProjectProfileRequest) String() string

func (*UpdateProjectProfileRequest) Validate

func (m *UpdateProjectProfileRequest) Validate() error

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

type UpdateProjectProfileRequestValidationError

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

UpdateProjectProfileRequestValidationError is the validation error returned by UpdateProjectProfileRequest.Validate if the designated constraints aren't met.

func (UpdateProjectProfileRequestValidationError) Cause

Cause function returns cause value.

func (UpdateProjectProfileRequestValidationError) Error

Error satisfies the builtin error interface

func (UpdateProjectProfileRequestValidationError) ErrorName

ErrorName returns error name.

func (UpdateProjectProfileRequestValidationError) Field

Field function returns field value.

func (UpdateProjectProfileRequestValidationError) Key

Key function returns key value.

func (UpdateProjectProfileRequestValidationError) Reason

Reason function returns reason value.

type UpdateProjectProfileResponse

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

func (*UpdateProjectProfileResponse) Descriptor deprecated

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

Deprecated: Use UpdateProjectProfileResponse.ProtoReflect.Descriptor instead.

func (*UpdateProjectProfileResponse) ProtoMessage

func (*UpdateProjectProfileResponse) ProtoMessage()

func (*UpdateProjectProfileResponse) ProtoReflect

func (*UpdateProjectProfileResponse) Reset

func (x *UpdateProjectProfileResponse) Reset()

func (*UpdateProjectProfileResponse) String

func (*UpdateProjectProfileResponse) Validate

func (m *UpdateProjectProfileResponse) Validate() error

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

type UpdateProjectProfileResponseValidationError

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

UpdateProjectProfileResponseValidationError is the validation error returned by UpdateProjectProfileResponse.Validate if the designated constraints aren't met.

func (UpdateProjectProfileResponseValidationError) Cause

Cause function returns cause value.

func (UpdateProjectProfileResponseValidationError) Error

Error satisfies the builtin error interface

func (UpdateProjectProfileResponseValidationError) ErrorName

ErrorName returns error name.

func (UpdateProjectProfileResponseValidationError) Field

Field function returns field value.

func (UpdateProjectProfileResponseValidationError) Key

Key function returns key value.

func (UpdateProjectProfileResponseValidationError) Reason

Reason function returns reason value.

type UpdateProjectRequest

type UpdateProjectRequest struct {
	GroupId   uint64       `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	ProjectId uint64       `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	UserId    uint64       `protobuf:"varint,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Info      *ProjectInfo `protobuf:"bytes,4,opt,name=info,proto3" json:"info,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateProjectRequest) Descriptor deprecated

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

Deprecated: Use UpdateProjectRequest.ProtoReflect.Descriptor instead.

func (*UpdateProjectRequest) GetGroupId

func (x *UpdateProjectRequest) GetGroupId() uint64

func (*UpdateProjectRequest) GetInfo

func (x *UpdateProjectRequest) GetInfo() *ProjectInfo

func (*UpdateProjectRequest) GetProjectId

func (x *UpdateProjectRequest) GetProjectId() uint64

func (*UpdateProjectRequest) GetUserId

func (x *UpdateProjectRequest) GetUserId() uint64

func (*UpdateProjectRequest) ProtoMessage

func (*UpdateProjectRequest) ProtoMessage()

func (*UpdateProjectRequest) ProtoReflect

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

func (*UpdateProjectRequest) Reset

func (x *UpdateProjectRequest) Reset()

func (*UpdateProjectRequest) String

func (x *UpdateProjectRequest) String() string

func (*UpdateProjectRequest) Validate

func (m *UpdateProjectRequest) Validate() error

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

type UpdateProjectRequestValidationError

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

UpdateProjectRequestValidationError is the validation error returned by UpdateProjectRequest.Validate if the designated constraints aren't met.

func (UpdateProjectRequestValidationError) Cause

Cause function returns cause value.

func (UpdateProjectRequestValidationError) Error

Error satisfies the builtin error interface

func (UpdateProjectRequestValidationError) ErrorName

ErrorName returns error name.

func (UpdateProjectRequestValidationError) Field

Field function returns field value.

func (UpdateProjectRequestValidationError) Key

Key function returns key value.

func (UpdateProjectRequestValidationError) Reason

Reason function returns reason value.

type UpdateProjectResponse

type UpdateProjectResponse struct {
	Info *ProjectInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateProjectResponse) Descriptor deprecated

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

Deprecated: Use UpdateProjectResponse.ProtoReflect.Descriptor instead.

func (*UpdateProjectResponse) GetInfo

func (x *UpdateProjectResponse) GetInfo() *ProjectInfo

func (*UpdateProjectResponse) ProtoMessage

func (*UpdateProjectResponse) ProtoMessage()

func (*UpdateProjectResponse) ProtoReflect

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

func (*UpdateProjectResponse) Reset

func (x *UpdateProjectResponse) Reset()

func (*UpdateProjectResponse) String

func (x *UpdateProjectResponse) String() string

func (*UpdateProjectResponse) Validate

func (m *UpdateProjectResponse) Validate() error

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

type UpdateProjectResponseValidationError

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

UpdateProjectResponseValidationError is the validation error returned by UpdateProjectResponse.Validate if the designated constraints aren't met.

func (UpdateProjectResponseValidationError) Cause

Cause function returns cause value.

func (UpdateProjectResponseValidationError) Error

Error satisfies the builtin error interface

func (UpdateProjectResponseValidationError) ErrorName

ErrorName returns error name.

func (UpdateProjectResponseValidationError) Field

Field function returns field value.

func (UpdateProjectResponseValidationError) Key

Key function returns key value.

func (UpdateProjectResponseValidationError) Reason

Reason function returns reason value.

type UpdateUserAvatorRequest

type UpdateUserAvatorRequest struct {
	UserId uint64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Avatar string `protobuf:"bytes,2,opt,name=avatar,proto3" json:"avatar,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateUserAvatorRequest) Descriptor deprecated

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

Deprecated: Use UpdateUserAvatorRequest.ProtoReflect.Descriptor instead.

func (*UpdateUserAvatorRequest) GetAvatar

func (x *UpdateUserAvatorRequest) GetAvatar() string

func (*UpdateUserAvatorRequest) GetUserId

func (x *UpdateUserAvatorRequest) GetUserId() uint64

func (*UpdateUserAvatorRequest) ProtoMessage

func (*UpdateUserAvatorRequest) ProtoMessage()

func (*UpdateUserAvatorRequest) ProtoReflect

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

func (*UpdateUserAvatorRequest) Reset

func (x *UpdateUserAvatorRequest) Reset()

func (*UpdateUserAvatorRequest) String

func (x *UpdateUserAvatorRequest) String() string

func (*UpdateUserAvatorRequest) Validate

func (m *UpdateUserAvatorRequest) Validate() error

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

type UpdateUserAvatorRequestValidationError

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

UpdateUserAvatorRequestValidationError is the validation error returned by UpdateUserAvatorRequest.Validate if the designated constraints aren't met.

func (UpdateUserAvatorRequestValidationError) Cause

Cause function returns cause value.

func (UpdateUserAvatorRequestValidationError) Error

Error satisfies the builtin error interface

func (UpdateUserAvatorRequestValidationError) ErrorName

ErrorName returns error name.

func (UpdateUserAvatorRequestValidationError) Field

Field function returns field value.

func (UpdateUserAvatorRequestValidationError) Key

Key function returns key value.

func (UpdateUserAvatorRequestValidationError) Reason

Reason function returns reason value.

type UpdateUserAvatorResponse

type UpdateUserAvatorResponse struct {
	Info *UserInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateUserAvatorResponse) Descriptor deprecated

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

Deprecated: Use UpdateUserAvatorResponse.ProtoReflect.Descriptor instead.

func (*UpdateUserAvatorResponse) GetInfo

func (x *UpdateUserAvatorResponse) GetInfo() *UserInfo

func (*UpdateUserAvatorResponse) ProtoMessage

func (*UpdateUserAvatorResponse) ProtoMessage()

func (*UpdateUserAvatorResponse) ProtoReflect

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

func (*UpdateUserAvatorResponse) Reset

func (x *UpdateUserAvatorResponse) Reset()

func (*UpdateUserAvatorResponse) String

func (x *UpdateUserAvatorResponse) String() string

func (*UpdateUserAvatorResponse) Validate

func (m *UpdateUserAvatorResponse) Validate() error

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

type UpdateUserAvatorResponseValidationError

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

UpdateUserAvatorResponseValidationError is the validation error returned by UpdateUserAvatorResponse.Validate if the designated constraints aren't met.

func (UpdateUserAvatorResponseValidationError) Cause

Cause function returns cause value.

func (UpdateUserAvatorResponseValidationError) Error

Error satisfies the builtin error interface

func (UpdateUserAvatorResponseValidationError) ErrorName

ErrorName returns error name.

func (UpdateUserAvatorResponseValidationError) Field

Field function returns field value.

func (UpdateUserAvatorResponseValidationError) Key

Key function returns key value.

func (UpdateUserAvatorResponseValidationError) Reason

Reason function returns reason value.

type UserClient

UserClient is the client API for User service.

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

func NewUserClient

func NewUserClient(cc grpc.ClientConnInterface) UserClient

type UserFollowingGroupRequest

type UserFollowingGroupRequest struct {
	UserId uint64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UserFollowingGroupRequest) Descriptor deprecated

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

Deprecated: Use UserFollowingGroupRequest.ProtoReflect.Descriptor instead.

func (*UserFollowingGroupRequest) GetUserId

func (x *UserFollowingGroupRequest) GetUserId() uint64

func (*UserFollowingGroupRequest) ProtoMessage

func (*UserFollowingGroupRequest) ProtoMessage()

func (*UserFollowingGroupRequest) ProtoReflect

func (*UserFollowingGroupRequest) Reset

func (x *UserFollowingGroupRequest) Reset()

func (*UserFollowingGroupRequest) String

func (x *UserFollowingGroupRequest) String() string

func (*UserFollowingGroupRequest) Validate

func (m *UserFollowingGroupRequest) Validate() error

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

type UserFollowingGroupRequestValidationError

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

UserFollowingGroupRequestValidationError is the validation error returned by UserFollowingGroupRequest.Validate if the designated constraints aren't met.

func (UserFollowingGroupRequestValidationError) Cause

Cause function returns cause value.

func (UserFollowingGroupRequestValidationError) Error

Error satisfies the builtin error interface

func (UserFollowingGroupRequestValidationError) ErrorName

ErrorName returns error name.

func (UserFollowingGroupRequestValidationError) Field

Field function returns field value.

func (UserFollowingGroupRequestValidationError) Key

Key function returns key value.

func (UserFollowingGroupRequestValidationError) Reason

Reason function returns reason value.

type UserFollowingGroupResponse

type UserFollowingGroupResponse struct {
	UserId uint64       `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	List   []*GroupInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list,omitempty"`
	Offset uint64       `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
	Number uint64       `protobuf:"varint,4,opt,name=number,proto3" json:"number,omitempty"`
	// contains filtered or unexported fields
}

func (*UserFollowingGroupResponse) Descriptor deprecated

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

Deprecated: Use UserFollowingGroupResponse.ProtoReflect.Descriptor instead.

func (*UserFollowingGroupResponse) GetList

func (x *UserFollowingGroupResponse) GetList() []*GroupInfo

func (*UserFollowingGroupResponse) GetNumber

func (x *UserFollowingGroupResponse) GetNumber() uint64

func (*UserFollowingGroupResponse) GetOffset

func (x *UserFollowingGroupResponse) GetOffset() uint64

func (*UserFollowingGroupResponse) GetUserId

func (x *UserFollowingGroupResponse) GetUserId() uint64

func (*UserFollowingGroupResponse) ProtoMessage

func (*UserFollowingGroupResponse) ProtoMessage()

func (*UserFollowingGroupResponse) ProtoReflect

func (*UserFollowingGroupResponse) Reset

func (x *UserFollowingGroupResponse) Reset()

func (*UserFollowingGroupResponse) String

func (x *UserFollowingGroupResponse) String() string

func (*UserFollowingGroupResponse) Validate

func (m *UserFollowingGroupResponse) Validate() error

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

type UserFollowingGroupResponseValidationError

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

UserFollowingGroupResponseValidationError is the validation error returned by UserFollowingGroupResponse.Validate if the designated constraints aren't met.

func (UserFollowingGroupResponseValidationError) Cause

Cause function returns cause value.

func (UserFollowingGroupResponseValidationError) Error

Error satisfies the builtin error interface

func (UserFollowingGroupResponseValidationError) ErrorName

ErrorName returns error name.

func (UserFollowingGroupResponseValidationError) Field

Field function returns field value.

func (UserFollowingGroupResponseValidationError) Key

Key function returns key value.

func (UserFollowingGroupResponseValidationError) Reason

Reason function returns reason value.

type UserGroupRequest

type UserGroupRequest struct {
	UserId uint64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UserGroupRequest) Descriptor deprecated

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

Deprecated: Use UserGroupRequest.ProtoReflect.Descriptor instead.

func (*UserGroupRequest) GetUserId

func (x *UserGroupRequest) GetUserId() uint64

func (*UserGroupRequest) ProtoMessage

func (*UserGroupRequest) ProtoMessage()

func (*UserGroupRequest) ProtoReflect

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

func (*UserGroupRequest) Reset

func (x *UserGroupRequest) Reset()

func (*UserGroupRequest) String

func (x *UserGroupRequest) String() string

func (*UserGroupRequest) Validate

func (m *UserGroupRequest) Validate() error

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

type UserGroupRequestValidationError

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

UserGroupRequestValidationError is the validation error returned by UserGroupRequest.Validate if the designated constraints aren't met.

func (UserGroupRequestValidationError) Cause

Cause function returns cause value.

func (UserGroupRequestValidationError) Error

Error satisfies the builtin error interface

func (UserGroupRequestValidationError) ErrorName

ErrorName returns error name.

func (UserGroupRequestValidationError) Field

Field function returns field value.

func (UserGroupRequestValidationError) Key

Key function returns key value.

func (UserGroupRequestValidationError) Reason

Reason function returns reason value.

type UserGroupResponse

type UserGroupResponse struct {
	List []*GroupInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
	// contains filtered or unexported fields
}

func (*UserGroupResponse) Descriptor deprecated

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

Deprecated: Use UserGroupResponse.ProtoReflect.Descriptor instead.

func (*UserGroupResponse) GetList

func (x *UserGroupResponse) GetList() []*GroupInfo

func (*UserGroupResponse) ProtoMessage

func (*UserGroupResponse) ProtoMessage()

func (*UserGroupResponse) ProtoReflect

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

func (*UserGroupResponse) Reset

func (x *UserGroupResponse) Reset()

func (*UserGroupResponse) String

func (x *UserGroupResponse) String() string

func (*UserGroupResponse) Validate

func (m *UserGroupResponse) Validate() error

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

type UserGroupResponseValidationError

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

UserGroupResponseValidationError is the validation error returned by UserGroupResponse.Validate if the designated constraints aren't met.

func (UserGroupResponseValidationError) Cause

Cause function returns cause value.

func (UserGroupResponseValidationError) Error

Error satisfies the builtin error interface

func (UserGroupResponseValidationError) ErrorName

ErrorName returns error name.

func (UserGroupResponseValidationError) Field

Field function returns field value.

func (UserGroupResponseValidationError) Key

Key function returns key value.

func (UserGroupResponseValidationError) Reason

Reason function returns reason value.

type UserInfo

type UserInfo struct {
	UserId   uint64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Name     string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Avatar   string `protobuf:"bytes,3,opt,name=avatar,proto3" json:"avatar,omitempty"`
	Email    string `protobuf:"bytes,4,opt,name=email,proto3" json:"email,omitempty"`
	Location string `protobuf:"bytes,5,opt,name=location,proto3" json:"location,omitempty"`
	Desc     string `protobuf:"bytes,6,opt,name=desc,proto3" json:"desc,omitempty"` // uint64 LastActiveTime = 7;
	// contains filtered or unexported fields
}

func (*UserInfo) Descriptor deprecated

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

Deprecated: Use UserInfo.ProtoReflect.Descriptor instead.

func (*UserInfo) GetAvatar

func (x *UserInfo) GetAvatar() string

func (*UserInfo) GetDesc

func (x *UserInfo) GetDesc() string

func (*UserInfo) GetEmail

func (x *UserInfo) GetEmail() string

func (*UserInfo) GetLocation

func (x *UserInfo) GetLocation() string

func (*UserInfo) GetName

func (x *UserInfo) GetName() string

func (*UserInfo) GetUserId

func (x *UserInfo) GetUserId() uint64

func (*UserInfo) ProtoMessage

func (*UserInfo) ProtoMessage()

func (*UserInfo) ProtoReflect

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

func (*UserInfo) Reset

func (x *UserInfo) Reset()

func (*UserInfo) String

func (x *UserInfo) String() string

func (*UserInfo) Validate

func (m *UserInfo) Validate() error

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

type UserInfoRequest

type UserInfoRequest struct {
	UserId uint64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

user ,group .project.item

func (*UserInfoRequest) Descriptor deprecated

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

Deprecated: Use UserInfoRequest.ProtoReflect.Descriptor instead.

func (*UserInfoRequest) GetUserId

func (x *UserInfoRequest) GetUserId() uint64

func (*UserInfoRequest) ProtoMessage

func (*UserInfoRequest) ProtoMessage()

func (*UserInfoRequest) ProtoReflect

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

func (*UserInfoRequest) Reset

func (x *UserInfoRequest) Reset()

func (*UserInfoRequest) String

func (x *UserInfoRequest) String() string

func (*UserInfoRequest) Validate

func (m *UserInfoRequest) Validate() error

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

type UserInfoRequestValidationError

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

UserInfoRequestValidationError is the validation error returned by UserInfoRequest.Validate if the designated constraints aren't met.

func (UserInfoRequestValidationError) Cause

Cause function returns cause value.

func (UserInfoRequestValidationError) Error

Error satisfies the builtin error interface

func (UserInfoRequestValidationError) ErrorName

func (e UserInfoRequestValidationError) ErrorName() string

ErrorName returns error name.

func (UserInfoRequestValidationError) Field

Field function returns field value.

func (UserInfoRequestValidationError) Key

Key function returns key value.

func (UserInfoRequestValidationError) Reason

Reason function returns reason value.

type UserInfoResponse

type UserInfoResponse struct {
	Info *UserInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfoResponse) Descriptor deprecated

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

Deprecated: Use UserInfoResponse.ProtoReflect.Descriptor instead.

func (*UserInfoResponse) GetInfo

func (x *UserInfoResponse) GetInfo() *UserInfo

func (*UserInfoResponse) ProtoMessage

func (*UserInfoResponse) ProtoMessage()

func (*UserInfoResponse) ProtoReflect

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

func (*UserInfoResponse) Reset

func (x *UserInfoResponse) Reset()

func (*UserInfoResponse) String

func (x *UserInfoResponse) String() string

func (*UserInfoResponse) Validate

func (m *UserInfoResponse) Validate() error

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

type UserInfoResponseValidationError

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

UserInfoResponseValidationError is the validation error returned by UserInfoResponse.Validate if the designated constraints aren't met.

func (UserInfoResponseValidationError) Cause

Cause function returns cause value.

func (UserInfoResponseValidationError) Error

Error satisfies the builtin error interface

func (UserInfoResponseValidationError) ErrorName

ErrorName returns error name.

func (UserInfoResponseValidationError) Field

Field function returns field value.

func (UserInfoResponseValidationError) Key

Key function returns key value.

func (UserInfoResponseValidationError) Reason

Reason function returns reason value.

type UserInfoValidationError

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

UserInfoValidationError is the validation error returned by UserInfo.Validate if the designated constraints aren't met.

func (UserInfoValidationError) Cause

func (e UserInfoValidationError) Cause() error

Cause function returns cause value.

func (UserInfoValidationError) Error

func (e UserInfoValidationError) Error() string

Error satisfies the builtin error interface

func (UserInfoValidationError) ErrorName

func (e UserInfoValidationError) ErrorName() string

ErrorName returns error name.

func (UserInfoValidationError) Field

func (e UserInfoValidationError) Field() string

Field function returns field value.

func (UserInfoValidationError) Key

func (e UserInfoValidationError) Key() bool

Key function returns key value.

func (UserInfoValidationError) Reason

func (e UserInfoValidationError) Reason() string

Reason function returns reason value.

type UserProfileInfo

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

func (*UserProfileInfo) Descriptor deprecated

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

Deprecated: Use UserProfileInfo.ProtoReflect.Descriptor instead.

func (*UserProfileInfo) ProtoMessage

func (*UserProfileInfo) ProtoMessage()

func (*UserProfileInfo) ProtoReflect

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

func (*UserProfileInfo) Reset

func (x *UserProfileInfo) Reset()

func (*UserProfileInfo) String

func (x *UserProfileInfo) String() string

func (*UserProfileInfo) Validate

func (m *UserProfileInfo) Validate() error

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

type UserProfileInfoValidationError

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

UserProfileInfoValidationError is the validation error returned by UserProfileInfo.Validate if the designated constraints aren't met.

func (UserProfileInfoValidationError) Cause

Cause function returns cause value.

func (UserProfileInfoValidationError) Error

Error satisfies the builtin error interface

func (UserProfileInfoValidationError) ErrorName

func (e UserProfileInfoValidationError) ErrorName() string

ErrorName returns error name.

func (UserProfileInfoValidationError) Field

Field function returns field value.

func (UserProfileInfoValidationError) Key

Key function returns key value.

func (UserProfileInfoValidationError) Reason

Reason function returns reason value.

type UserStatus

type UserStatus int32
const (
	UserStatus_Rest    UserStatus = 0
	UserStatus_Study   UserStatus = 1
	UserStatus_Busy    UserStatus = 2
	UserStatus_Working UserStatus = 3
)

func (UserStatus) Descriptor

func (UserStatus) Descriptor() protoreflect.EnumDescriptor

func (UserStatus) Enum

func (x UserStatus) Enum() *UserStatus

func (UserStatus) EnumDescriptor deprecated

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

Deprecated: Use UserStatus.Descriptor instead.

func (UserStatus) Number

func (x UserStatus) Number() protoreflect.EnumNumber

func (UserStatus) String

func (x UserStatus) String() string

func (UserStatus) Type

type UserUpdateRequest

type UserUpdateRequest struct {
	UserId   uint64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname,omitempty"`
	Avatar   string `protobuf:"bytes,3,opt,name=avatar,proto3" json:"avatar,omitempty"`
	Desc     string `protobuf:"bytes,4,opt,name=desc,proto3" json:"desc,omitempty"`
	// contains filtered or unexported fields
}

func (*UserUpdateRequest) Descriptor deprecated

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

Deprecated: Use UserUpdateRequest.ProtoReflect.Descriptor instead.

func (*UserUpdateRequest) GetAvatar

func (x *UserUpdateRequest) GetAvatar() string

func (*UserUpdateRequest) GetDesc

func (x *UserUpdateRequest) GetDesc() string

func (*UserUpdateRequest) GetNickname

func (x *UserUpdateRequest) GetNickname() string

func (*UserUpdateRequest) GetUserId

func (x *UserUpdateRequest) GetUserId() uint64

func (*UserUpdateRequest) ProtoMessage

func (*UserUpdateRequest) ProtoMessage()

func (*UserUpdateRequest) ProtoReflect

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

func (*UserUpdateRequest) Reset

func (x *UserUpdateRequest) Reset()

func (*UserUpdateRequest) String

func (x *UserUpdateRequest) String() string

func (*UserUpdateRequest) Validate

func (m *UserUpdateRequest) Validate() error

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

type UserUpdateRequestValidationError

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

UserUpdateRequestValidationError is the validation error returned by UserUpdateRequest.Validate if the designated constraints aren't met.

func (UserUpdateRequestValidationError) Cause

Cause function returns cause value.

func (UserUpdateRequestValidationError) Error

Error satisfies the builtin error interface

func (UserUpdateRequestValidationError) ErrorName

ErrorName returns error name.

func (UserUpdateRequestValidationError) Field

Field function returns field value.

func (UserUpdateRequestValidationError) Key

Key function returns key value.

func (UserUpdateRequestValidationError) Reason

Reason function returns reason value.

type UserUpdateResponse

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

func (*UserUpdateResponse) Descriptor deprecated

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

Deprecated: Use UserUpdateResponse.ProtoReflect.Descriptor instead.

func (*UserUpdateResponse) ProtoMessage

func (*UserUpdateResponse) ProtoMessage()

func (*UserUpdateResponse) ProtoReflect

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

func (*UserUpdateResponse) Reset

func (x *UserUpdateResponse) Reset()

func (*UserUpdateResponse) String

func (x *UserUpdateResponse) String() string

func (*UserUpdateResponse) Validate

func (m *UserUpdateResponse) Validate() error

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

type UserUpdateResponseValidationError

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

UserUpdateResponseValidationError is the validation error returned by UserUpdateResponse.Validate if the designated constraints aren't met.

func (UserUpdateResponseValidationError) Cause

Cause function returns cause value.

func (UserUpdateResponseValidationError) Error

Error satisfies the builtin error interface

func (UserUpdateResponseValidationError) ErrorName

ErrorName returns error name.

func (UserUpdateResponseValidationError) Field

Field function returns field value.

func (UserUpdateResponseValidationError) Key

Key function returns key value.

func (UserUpdateResponseValidationError) Reason

Reason function returns reason value.

type UserWatchingRequest

type UserWatchingRequest struct {
	UserId uint64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UserWatchingRequest) Descriptor deprecated

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

Deprecated: Use UserWatchingRequest.ProtoReflect.Descriptor instead.

func (*UserWatchingRequest) GetUserId

func (x *UserWatchingRequest) GetUserId() uint64

func (*UserWatchingRequest) ProtoMessage

func (*UserWatchingRequest) ProtoMessage()

func (*UserWatchingRequest) ProtoReflect

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

func (*UserWatchingRequest) Reset

func (x *UserWatchingRequest) Reset()

func (*UserWatchingRequest) String

func (x *UserWatchingRequest) String() string

func (*UserWatchingRequest) Validate

func (m *UserWatchingRequest) Validate() error

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

type UserWatchingRequestValidationError

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

UserWatchingRequestValidationError is the validation error returned by UserWatchingRequest.Validate if the designated constraints aren't met.

func (UserWatchingRequestValidationError) Cause

Cause function returns cause value.

func (UserWatchingRequestValidationError) Error

Error satisfies the builtin error interface

func (UserWatchingRequestValidationError) ErrorName

ErrorName returns error name.

func (UserWatchingRequestValidationError) Field

Field function returns field value.

func (UserWatchingRequestValidationError) Key

Key function returns key value.

func (UserWatchingRequestValidationError) Reason

Reason function returns reason value.

type UserWatchingResponse

type UserWatchingResponse struct {
	List []*ProjectInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
	// contains filtered or unexported fields
}

func (*UserWatchingResponse) Descriptor deprecated

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

Deprecated: Use UserWatchingResponse.ProtoReflect.Descriptor instead.

func (*UserWatchingResponse) GetList

func (x *UserWatchingResponse) GetList() []*ProjectInfo

func (*UserWatchingResponse) ProtoMessage

func (*UserWatchingResponse) ProtoMessage()

func (*UserWatchingResponse) ProtoReflect

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

func (*UserWatchingResponse) Reset

func (x *UserWatchingResponse) Reset()

func (*UserWatchingResponse) String

func (x *UserWatchingResponse) String() string

func (*UserWatchingResponse) Validate

func (m *UserWatchingResponse) Validate() error

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

type UserWatchingResponseValidationError

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

UserWatchingResponseValidationError is the validation error returned by UserWatchingResponse.Validate if the designated constraints aren't met.

func (UserWatchingResponseValidationError) Cause

Cause function returns cause value.

func (UserWatchingResponseValidationError) Error

Error satisfies the builtin error interface

func (UserWatchingResponseValidationError) ErrorName

ErrorName returns error name.

func (UserWatchingResponseValidationError) Field

Field function returns field value.

func (UserWatchingResponseValidationError) Key

Key function returns key value.

func (UserWatchingResponseValidationError) Reason

Reason function returns reason value.

type VideoDetail

type VideoDetail struct {
	List []*VideoInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
	Num  uint64       `protobuf:"varint,2,opt,name=num,proto3" json:"num,omitempty"`
	// contains filtered or unexported fields
}

func (*VideoDetail) Descriptor deprecated

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

Deprecated: Use VideoDetail.ProtoReflect.Descriptor instead.

func (*VideoDetail) GetList

func (x *VideoDetail) GetList() []*VideoInfo

func (*VideoDetail) GetNum

func (x *VideoDetail) GetNum() uint64

func (*VideoDetail) ProtoMessage

func (*VideoDetail) ProtoMessage()

func (*VideoDetail) ProtoReflect

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

func (*VideoDetail) Reset

func (x *VideoDetail) Reset()

func (*VideoDetail) String

func (x *VideoDetail) String() string

func (*VideoDetail) Validate

func (m *VideoDetail) Validate() error

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

type VideoDetailValidationError

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

VideoDetailValidationError is the validation error returned by VideoDetail.Validate if the designated constraints aren't met.

func (VideoDetailValidationError) Cause

Cause function returns cause value.

func (VideoDetailValidationError) Error

Error satisfies the builtin error interface

func (VideoDetailValidationError) ErrorName

func (e VideoDetailValidationError) ErrorName() string

ErrorName returns error name.

func (VideoDetailValidationError) Field

Field function returns field value.

func (VideoDetailValidationError) Key

Key function returns key value.

func (VideoDetailValidationError) Reason

Reason function returns reason value.

type VideoInfo

type VideoInfo struct {
	ResourceUrl string `protobuf:"bytes,1,opt,name=resource_url,json=resourceUrl,proto3" json:"resource_url,omitempty"`
	Size        uint64 `protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty"`
	TimeLength  uint64 `protobuf:"varint,3,opt,name=timeLength,proto3" json:"timeLength,omitempty"`
	// contains filtered or unexported fields
}

func (*VideoInfo) Descriptor deprecated

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

Deprecated: Use VideoInfo.ProtoReflect.Descriptor instead.

func (*VideoInfo) GetResourceUrl

func (x *VideoInfo) GetResourceUrl() string

func (*VideoInfo) GetSize

func (x *VideoInfo) GetSize() uint64

func (*VideoInfo) GetTimeLength

func (x *VideoInfo) GetTimeLength() uint64

func (*VideoInfo) ProtoMessage

func (*VideoInfo) ProtoMessage()

func (*VideoInfo) ProtoReflect

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

func (*VideoInfo) Reset

func (x *VideoInfo) Reset()

func (*VideoInfo) String

func (x *VideoInfo) String() string

func (*VideoInfo) Validate

func (m *VideoInfo) Validate() error

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

type VideoInfoValidationError

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

VideoInfoValidationError is the validation error returned by VideoInfo.Validate if the designated constraints aren't met.

func (VideoInfoValidationError) Cause

func (e VideoInfoValidationError) Cause() error

Cause function returns cause value.

func (VideoInfoValidationError) Error

func (e VideoInfoValidationError) Error() string

Error satisfies the builtin error interface

func (VideoInfoValidationError) ErrorName

func (e VideoInfoValidationError) ErrorName() string

ErrorName returns error name.

func (VideoInfoValidationError) Field

func (e VideoInfoValidationError) Field() string

Field function returns field value.

func (VideoInfoValidationError) Key

Key function returns key value.

func (VideoInfoValidationError) Reason

func (e VideoInfoValidationError) Reason() string

Reason function returns reason value.

type VisibleType

type VisibleType int32
const (
	VisibleType_AllPublic VisibleType = 0
	VisibleType_Public    VisibleType = 1
	VisibleType_Private   VisibleType = 2
	VisibleType_Someone   VisibleType = 3
)

func (VisibleType) Descriptor

func (VisibleType) Enum

func (x VisibleType) Enum() *VisibleType

func (VisibleType) EnumDescriptor deprecated

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

Deprecated: Use VisibleType.Descriptor instead.

func (VisibleType) Number

func (x VisibleType) Number() protoreflect.EnumNumber

func (VisibleType) String

func (x VisibleType) String() string

func (VisibleType) Type

type VoiceDetail

type VoiceDetail struct {
	ResourceUrl string `protobuf:"bytes,1,opt,name=resourceUrl,proto3" json:"resourceUrl,omitempty"`
	Size        uint64 `protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty"`
	TimeLength  uint64 `protobuf:"varint,3,opt,name=timeLength,proto3" json:"timeLength,omitempty"`
	// contains filtered or unexported fields
}

func (*VoiceDetail) Descriptor deprecated

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

Deprecated: Use VoiceDetail.ProtoReflect.Descriptor instead.

func (*VoiceDetail) GetResourceUrl

func (x *VoiceDetail) GetResourceUrl() string

func (*VoiceDetail) GetSize

func (x *VoiceDetail) GetSize() uint64

func (*VoiceDetail) GetTimeLength

func (x *VoiceDetail) GetTimeLength() uint64

func (*VoiceDetail) ProtoMessage

func (*VoiceDetail) ProtoMessage()

func (*VoiceDetail) ProtoReflect

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

func (*VoiceDetail) Reset

func (x *VoiceDetail) Reset()

func (*VoiceDetail) String

func (x *VoiceDetail) String() string

func (*VoiceDetail) Validate

func (m *VoiceDetail) Validate() error

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

type VoiceDetailValidationError

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

VoiceDetailValidationError is the validation error returned by VoiceDetail.Validate if the designated constraints aren't met.

func (VoiceDetailValidationError) Cause

Cause function returns cause value.

func (VoiceDetailValidationError) Error

Error satisfies the builtin error interface

func (VoiceDetailValidationError) ErrorName

func (e VoiceDetailValidationError) ErrorName() string

ErrorName returns error name.

func (VoiceDetailValidationError) Field

Field function returns field value.

func (VoiceDetailValidationError) Key

Key function returns key value.

func (VoiceDetailValidationError) Reason

Reason function returns reason value.

type WatchProjectReqeust

type WatchProjectReqeust struct {
	GroupId   uint64 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	ProjectId uint64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	UserId    uint64 `protobuf:"varint,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*WatchProjectReqeust) Descriptor deprecated

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

Deprecated: Use WatchProjectReqeust.ProtoReflect.Descriptor instead.

func (*WatchProjectReqeust) GetGroupId

func (x *WatchProjectReqeust) GetGroupId() uint64

func (*WatchProjectReqeust) GetProjectId

func (x *WatchProjectReqeust) GetProjectId() uint64

func (*WatchProjectReqeust) GetUserId

func (x *WatchProjectReqeust) GetUserId() uint64

func (*WatchProjectReqeust) ProtoMessage

func (*WatchProjectReqeust) ProtoMessage()

func (*WatchProjectReqeust) ProtoReflect

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

func (*WatchProjectReqeust) Reset

func (x *WatchProjectReqeust) Reset()

func (*WatchProjectReqeust) String

func (x *WatchProjectReqeust) String() string

func (*WatchProjectReqeust) Validate

func (m *WatchProjectReqeust) Validate() error

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

type WatchProjectReqeustValidationError

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

WatchProjectReqeustValidationError is the validation error returned by WatchProjectReqeust.Validate if the designated constraints aren't met.

func (WatchProjectReqeustValidationError) Cause

Cause function returns cause value.

func (WatchProjectReqeustValidationError) Error

Error satisfies the builtin error interface

func (WatchProjectReqeustValidationError) ErrorName

ErrorName returns error name.

func (WatchProjectReqeustValidationError) Field

Field function returns field value.

func (WatchProjectReqeustValidationError) Key

Key function returns key value.

func (WatchProjectReqeustValidationError) Reason

Reason function returns reason value.

type WatchProjectResponse

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

func (*WatchProjectResponse) Descriptor deprecated

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

Deprecated: Use WatchProjectResponse.ProtoReflect.Descriptor instead.

func (*WatchProjectResponse) ProtoMessage

func (*WatchProjectResponse) ProtoMessage()

func (*WatchProjectResponse) ProtoReflect

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

func (*WatchProjectResponse) Reset

func (x *WatchProjectResponse) Reset()

func (*WatchProjectResponse) String

func (x *WatchProjectResponse) String() string

func (*WatchProjectResponse) Validate

func (m *WatchProjectResponse) Validate() error

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

type WatchProjectResponseValidationError

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

WatchProjectResponseValidationError is the validation error returned by WatchProjectResponse.Validate if the designated constraints aren't met.

func (WatchProjectResponseValidationError) Cause

Cause function returns cause value.

func (WatchProjectResponseValidationError) Error

Error satisfies the builtin error interface

func (WatchProjectResponseValidationError) ErrorName

ErrorName returns error name.

func (WatchProjectResponseValidationError) Field

Field function returns field value.

func (WatchProjectResponseValidationError) Key

Key function returns key value.

func (WatchProjectResponseValidationError) Reason

Reason function returns reason value.

type WordDetail

type WordDetail struct {
	Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
	Length  uint64 `protobuf:"varint,2,opt,name=length,proto3" json:"length,omitempty"`
	// contains filtered or unexported fields
}

func (*WordDetail) Descriptor deprecated

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

Deprecated: Use WordDetail.ProtoReflect.Descriptor instead.

func (*WordDetail) GetContent

func (x *WordDetail) GetContent() string

func (*WordDetail) GetLength

func (x *WordDetail) GetLength() uint64

func (*WordDetail) ProtoMessage

func (*WordDetail) ProtoMessage()

func (*WordDetail) ProtoReflect

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

func (*WordDetail) Reset

func (x *WordDetail) Reset()

func (*WordDetail) String

func (x *WordDetail) String() string

func (*WordDetail) Validate

func (m *WordDetail) Validate() error

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

type WordDetailValidationError

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

WordDetailValidationError is the validation error returned by WordDetail.Validate if the designated constraints aren't met.

func (WordDetailValidationError) Cause

func (e WordDetailValidationError) Cause() error

Cause function returns cause value.

func (WordDetailValidationError) Error

Error satisfies the builtin error interface

func (WordDetailValidationError) ErrorName

func (e WordDetailValidationError) ErrorName() string

ErrorName returns error name.

func (WordDetailValidationError) Field

Field function returns field value.

func (WordDetailValidationError) Key

Key function returns key value.

func (WordDetailValidationError) Reason

func (e WordDetailValidationError) Reason() string

Reason function returns reason value.

Jump to

Keyboard shortcuts

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