talkpb

package
v0.0.2 Latest Latest
Warning

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

Go to latest
Published: Nov 19, 2022 License: MIT Imports: 20 Imported by: 5

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	TalkStatus_name = map[int32]string{
		0: "TALK_STATUS_UNSPECIFIED",
		1: "TALK_STATUS_OPENED",
		2: "TALK_STATUS_CLOSED",
	}
	TalkStatus_value = map[string]int32{
		"TALK_STATUS_UNSPECIFIED": 0,
		"TALK_STATUS_OPENED":      1,
		"TALK_STATUS_CLOSED":      2,
	}
)

Enum value maps for TalkStatus.

View Source
var CustomerTalkService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "CustomerTalkService",
	HandlerType: (*CustomerTalkServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "QueryTalks",
			Handler:    _CustomerTalkService_QueryTalks_Handler,
		},
	},
	Streams: []grpc.StreamDesc{
		{
			StreamName:    "Talk",
			Handler:       _CustomerTalkService_Talk_Handler,
			ServerStreams: true,
			ClientStreams: true,
		},
	},
	Metadata: "proto/talk.proto",
}

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

View Source
var CustomerUserServicer_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "CustomerUserServicer",
	HandlerType: (*CustomerUserServicerServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "CheckToken",
			Handler:    _CustomerUserServicer_CheckToken_Handler,
		},
		{
			MethodName: "CreateToken",
			Handler:    _CustomerUserServicer_CreateToken_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "proto/talk.proto",
}

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

View Source
var File_proto_talk_proto protoreflect.FileDescriptor
View Source
var ServiceTalkService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "ServiceTalkService",
	HandlerType: (*ServiceTalkServiceServer)(nil),
	Methods:     []grpc.MethodDesc{},
	Streams: []grpc.StreamDesc{
		{
			StreamName:    "Service",
			Handler:       _ServiceTalkService_Service_Handler,
			ServerStreams: true,
			ClientStreams: true,
		},
	},
	Metadata: "proto/talk.proto",
}

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

View Source
var ServicerUserServicer_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "ServicerUserServicer",
	HandlerType: (*ServicerUserServicerServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "Register",
			Handler:    _ServicerUserServicer_Register_Handler,
		},
		{
			MethodName: "Login",
			Handler:    _ServicerUserServicer_Login_Handler,
		},
		{
			MethodName: "Profile",
			Handler:    _ServicerUserServicer_Profile_Handler,
		},
		{
			MethodName: "SetPermissions",
			Handler:    _ServicerUserServicer_SetPermissions_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "proto/talk.proto",
}

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

Functions

func RegisterCustomerTalkServiceServer

func RegisterCustomerTalkServiceServer(s grpc.ServiceRegistrar, srv CustomerTalkServiceServer)

func RegisterCustomerUserServicerServer

func RegisterCustomerUserServicerServer(s grpc.ServiceRegistrar, srv CustomerUserServicerServer)

func RegisterServiceTalkServiceServer

func RegisterServiceTalkServiceServer(s grpc.ServiceRegistrar, srv ServiceTalkServiceServer)

func RegisterServicerUserServicerServer

func RegisterServicerUserServicerServer(s grpc.ServiceRegistrar, srv ServicerUserServicerServer)

Types

type CheckTokenRequest

type CheckTokenRequest struct {
	ActId string `protobuf:"bytes,1,opt,name=act_id,json=actId,proto3" json:"act_id,omitempty"`
	BizId string `protobuf:"bytes,2,opt,name=biz_id,json=bizId,proto3" json:"biz_id,omitempty"`
	// contains filtered or unexported fields
}

func (*CheckTokenRequest) Descriptor deprecated

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

Deprecated: Use CheckTokenRequest.ProtoReflect.Descriptor instead.

func (*CheckTokenRequest) GetActId added in v0.0.2

func (x *CheckTokenRequest) GetActId() string

func (*CheckTokenRequest) GetBizId added in v0.0.2

func (x *CheckTokenRequest) GetBizId() string

func (*CheckTokenRequest) ProtoMessage

func (*CheckTokenRequest) ProtoMessage()

func (*CheckTokenRequest) ProtoReflect

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

func (*CheckTokenRequest) Reset

func (x *CheckTokenRequest) Reset()

func (*CheckTokenRequest) String

func (x *CheckTokenRequest) String() string

func (*CheckTokenRequest) Validate

func (m *CheckTokenRequest) Validate() error

Validate checks the field values on CheckTokenRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CheckTokenRequest) ValidateAll

func (m *CheckTokenRequest) ValidateAll() error

ValidateAll checks the field values on CheckTokenRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CheckTokenRequestMultiError, or nil if none found.

type CheckTokenRequestMultiError

type CheckTokenRequestMultiError []error

CheckTokenRequestMultiError is an error wrapping multiple validation errors returned by CheckTokenRequest.ValidateAll() if the designated constraints aren't met.

func (CheckTokenRequestMultiError) AllErrors

func (m CheckTokenRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CheckTokenRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type CheckTokenRequestValidationError

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

CheckTokenRequestValidationError is the validation error returned by CheckTokenRequest.Validate if the designated constraints aren't met.

func (CheckTokenRequestValidationError) Cause

Cause function returns cause value.

func (CheckTokenRequestValidationError) Error

Error satisfies the builtin error interface

func (CheckTokenRequestValidationError) ErrorName

ErrorName returns error name.

func (CheckTokenRequestValidationError) Field

Field function returns field value.

func (CheckTokenRequestValidationError) Key

Key function returns key value.

func (CheckTokenRequestValidationError) Reason

Reason function returns reason value.

type CheckTokenResponse

type CheckTokenResponse struct {
	Valid    bool   `protobuf:"varint,1,opt,name=valid,proto3" json:"valid,omitempty"`
	UserName string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
	NewToken string `protobuf:"bytes,3,opt,name=new_token,json=newToken,proto3" json:"new_token,omitempty"`
	// contains filtered or unexported fields
}

func (*CheckTokenResponse) Descriptor deprecated

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

Deprecated: Use CheckTokenResponse.ProtoReflect.Descriptor instead.

func (*CheckTokenResponse) GetNewToken

func (x *CheckTokenResponse) GetNewToken() string

func (*CheckTokenResponse) GetUserName

func (x *CheckTokenResponse) GetUserName() string

func (*CheckTokenResponse) GetValid

func (x *CheckTokenResponse) GetValid() bool

func (*CheckTokenResponse) ProtoMessage

func (*CheckTokenResponse) ProtoMessage()

func (*CheckTokenResponse) ProtoReflect

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

func (*CheckTokenResponse) Reset

func (x *CheckTokenResponse) Reset()

func (*CheckTokenResponse) String

func (x *CheckTokenResponse) String() string

func (*CheckTokenResponse) Validate

func (m *CheckTokenResponse) Validate() error

Validate checks the field values on CheckTokenResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CheckTokenResponse) ValidateAll

func (m *CheckTokenResponse) ValidateAll() error

ValidateAll checks the field values on CheckTokenResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CheckTokenResponseMultiError, or nil if none found.

type CheckTokenResponseMultiError

type CheckTokenResponseMultiError []error

CheckTokenResponseMultiError is an error wrapping multiple validation errors returned by CheckTokenResponse.ValidateAll() if the designated constraints aren't met.

func (CheckTokenResponseMultiError) AllErrors

func (m CheckTokenResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CheckTokenResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type CheckTokenResponseValidationError

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

CheckTokenResponseValidationError is the validation error returned by CheckTokenResponse.Validate if the designated constraints aren't met.

func (CheckTokenResponseValidationError) Cause

Cause function returns cause value.

func (CheckTokenResponseValidationError) Error

Error satisfies the builtin error interface

func (CheckTokenResponseValidationError) ErrorName

ErrorName returns error name.

func (CheckTokenResponseValidationError) Field

Field function returns field value.

func (CheckTokenResponseValidationError) Key

Key function returns key value.

func (CheckTokenResponseValidationError) Reason

Reason function returns reason value.

type CreateTokenRequest

type CreateTokenRequest struct {
	UserName string `protobuf:"bytes,1,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
	ActId    string `protobuf:"bytes,2,opt,name=act_id,json=actId,proto3" json:"act_id,omitempty"`
	BizId    string `protobuf:"bytes,3,opt,name=biz_id,json=bizId,proto3" json:"biz_id,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateTokenRequest) Descriptor deprecated

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

Deprecated: Use CreateTokenRequest.ProtoReflect.Descriptor instead.

func (*CreateTokenRequest) GetActId added in v0.0.2

func (x *CreateTokenRequest) GetActId() string

func (*CreateTokenRequest) GetBizId added in v0.0.2

func (x *CreateTokenRequest) GetBizId() string

func (*CreateTokenRequest) GetUserName

func (x *CreateTokenRequest) GetUserName() string

func (*CreateTokenRequest) ProtoMessage

func (*CreateTokenRequest) ProtoMessage()

func (*CreateTokenRequest) ProtoReflect

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

func (*CreateTokenRequest) Reset

func (x *CreateTokenRequest) Reset()

func (*CreateTokenRequest) String

func (x *CreateTokenRequest) String() string

func (*CreateTokenRequest) Validate

func (m *CreateTokenRequest) Validate() error

Validate checks the field values on CreateTokenRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreateTokenRequest) ValidateAll

func (m *CreateTokenRequest) ValidateAll() error

ValidateAll checks the field values on CreateTokenRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreateTokenRequestMultiError, or nil if none found.

type CreateTokenRequestMultiError

type CreateTokenRequestMultiError []error

CreateTokenRequestMultiError is an error wrapping multiple validation errors returned by CreateTokenRequest.ValidateAll() if the designated constraints aren't met.

func (CreateTokenRequestMultiError) AllErrors

func (m CreateTokenRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateTokenRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type CreateTokenRequestValidationError

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

CreateTokenRequestValidationError is the validation error returned by CreateTokenRequest.Validate if the designated constraints aren't met.

func (CreateTokenRequestValidationError) Cause

Cause function returns cause value.

func (CreateTokenRequestValidationError) Error

Error satisfies the builtin error interface

func (CreateTokenRequestValidationError) ErrorName

ErrorName returns error name.

func (CreateTokenRequestValidationError) Field

Field function returns field value.

func (CreateTokenRequestValidationError) Key

Key function returns key value.

func (CreateTokenRequestValidationError) Reason

Reason function returns reason value.

type CreateTokenResponse

type CreateTokenResponse struct {
	Token    string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
	UserName string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateTokenResponse) Descriptor deprecated

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

Deprecated: Use CreateTokenResponse.ProtoReflect.Descriptor instead.

func (*CreateTokenResponse) GetToken

func (x *CreateTokenResponse) GetToken() string

func (*CreateTokenResponse) GetUserName

func (x *CreateTokenResponse) GetUserName() string

func (*CreateTokenResponse) ProtoMessage

func (*CreateTokenResponse) ProtoMessage()

func (*CreateTokenResponse) ProtoReflect

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

func (*CreateTokenResponse) Reset

func (x *CreateTokenResponse) Reset()

func (*CreateTokenResponse) String

func (x *CreateTokenResponse) String() string

func (*CreateTokenResponse) Validate

func (m *CreateTokenResponse) Validate() error

Validate checks the field values on CreateTokenResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreateTokenResponse) ValidateAll

func (m *CreateTokenResponse) ValidateAll() error

ValidateAll checks the field values on CreateTokenResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreateTokenResponseMultiError, or nil if none found.

type CreateTokenResponseMultiError

type CreateTokenResponseMultiError []error

CreateTokenResponseMultiError is an error wrapping multiple validation errors returned by CreateTokenResponse.ValidateAll() if the designated constraints aren't met.

func (CreateTokenResponseMultiError) AllErrors

func (m CreateTokenResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateTokenResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type CreateTokenResponseValidationError

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

CreateTokenResponseValidationError is the validation error returned by CreateTokenResponse.Validate if the designated constraints aren't met.

func (CreateTokenResponseValidationError) Cause

Cause function returns cause value.

func (CreateTokenResponseValidationError) Error

Error satisfies the builtin error interface

func (CreateTokenResponseValidationError) ErrorName

ErrorName returns error name.

func (CreateTokenResponseValidationError) Field

Field function returns field value.

func (CreateTokenResponseValidationError) Key

Key function returns key value.

func (CreateTokenResponseValidationError) Reason

Reason function returns reason value.

type CustomerTalkServiceClient

type CustomerTalkServiceClient interface {
	QueryTalks(ctx context.Context, in *QueryTalksRequest, opts ...grpc.CallOption) (*QueryTalksResponse, error)
	Talk(ctx context.Context, opts ...grpc.CallOption) (CustomerTalkService_TalkClient, error)
}

CustomerTalkServiceClient is the client API for CustomerTalkService service.

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

type CustomerTalkServiceServer

type CustomerTalkServiceServer interface {
	QueryTalks(context.Context, *QueryTalksRequest) (*QueryTalksResponse, error)
	Talk(CustomerTalkService_TalkServer) error
	// contains filtered or unexported methods
}

CustomerTalkServiceServer is the server API for CustomerTalkService service. All implementations must embed UnimplementedCustomerTalkServiceServer for forward compatibility

type CustomerTalkService_TalkClient

type CustomerTalkService_TalkClient interface {
	Send(*TalkRequest) error
	Recv() (*TalkResponse, error)
	grpc.ClientStream
}

type CustomerTalkService_TalkServer

type CustomerTalkService_TalkServer interface {
	Send(*TalkResponse) error
	Recv() (*TalkRequest, error)
	grpc.ServerStream
}

type CustomerUserServicerClient

type CustomerUserServicerClient interface {
	CheckToken(ctx context.Context, in *CheckTokenRequest, opts ...grpc.CallOption) (*CheckTokenResponse, error)
	CreateToken(ctx context.Context, in *CreateTokenRequest, opts ...grpc.CallOption) (*CreateTokenResponse, error)
}

CustomerUserServicerClient is the client API for CustomerUserServicer service.

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

type CustomerUserServicerServer

type CustomerUserServicerServer interface {
	CheckToken(context.Context, *CheckTokenRequest) (*CheckTokenResponse, error)
	CreateToken(context.Context, *CreateTokenRequest) (*CreateTokenResponse, error)
	// contains filtered or unexported methods
}

CustomerUserServicerServer is the server API for CustomerUserServicer service. All implementations must embed UnimplementedCustomerUserServicerServer for forward compatibility

type Empty

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

func (*Empty) Descriptor deprecated

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

Deprecated: Use Empty.ProtoReflect.Descriptor instead.

func (*Empty) ProtoMessage

func (*Empty) ProtoMessage()

func (*Empty) ProtoReflect

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

func (*Empty) Reset

func (x *Empty) Reset()

func (*Empty) String

func (x *Empty) String() string

func (*Empty) Validate

func (m *Empty) Validate() error

Validate checks the field values on Empty with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Empty) ValidateAll

func (m *Empty) ValidateAll() error

ValidateAll checks the field values on Empty with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in EmptyMultiError, or nil if none found.

type EmptyMultiError

type EmptyMultiError []error

EmptyMultiError is an error wrapping multiple validation errors returned by Empty.ValidateAll() if the designated constraints aren't met.

func (EmptyMultiError) AllErrors

func (m EmptyMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (EmptyMultiError) Error

func (m EmptyMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type EmptyValidationError

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

EmptyValidationError is the validation error returned by Empty.Validate if the designated constraints aren't met.

func (EmptyValidationError) Cause

func (e EmptyValidationError) Cause() error

Cause function returns cause value.

func (EmptyValidationError) Error

func (e EmptyValidationError) Error() string

Error satisfies the builtin error interface

func (EmptyValidationError) ErrorName

func (e EmptyValidationError) ErrorName() string

ErrorName returns error name.

func (EmptyValidationError) Field

func (e EmptyValidationError) Field() string

Field function returns field value.

func (EmptyValidationError) Key

func (e EmptyValidationError) Key() bool

Key function returns key value.

func (EmptyValidationError) Reason

func (e EmptyValidationError) Reason() string

Reason function returns reason value.

type LoginRequest

type LoginRequest struct {
	UserName string `protobuf:"bytes,1,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
	Password string `protobuf:"bytes,2,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) GetPassword

func (x *LoginRequest) GetPassword() string

func (*LoginRequest) GetUserName

func (x *LoginRequest) GetUserName() 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, the first error encountered is returned, or nil if there are no violations.

func (*LoginRequest) ValidateAll

func (m *LoginRequest) ValidateAll() error

ValidateAll checks the field values on LoginRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in LoginRequestMultiError, or nil if none found.

type LoginRequestMultiError

type LoginRequestMultiError []error

LoginRequestMultiError is an error wrapping multiple validation errors returned by LoginRequest.ValidateAll() if the designated constraints aren't met.

func (LoginRequestMultiError) AllErrors

func (m LoginRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginRequestMultiError) Error

func (m LoginRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

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 {
	Token    string   `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
	UserId   string   `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	UserName string   `protobuf:"bytes,3,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
	ActIds   []string `protobuf:"bytes,4,rep,name=act_ids,json=actIds,proto3" json:"act_ids,omitempty"`
	BizIds   []string `protobuf:"bytes,5,rep,name=biz_ids,json=bizIds,proto3" json:"biz_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*LoginResponse) Descriptor deprecated

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

Deprecated: Use LoginResponse.ProtoReflect.Descriptor instead.

func (*LoginResponse) GetActIds added in v0.0.2

func (x *LoginResponse) GetActIds() []string

func (*LoginResponse) GetBizIds added in v0.0.2

func (x *LoginResponse) GetBizIds() []string

func (*LoginResponse) GetToken

func (x *LoginResponse) GetToken() string

func (*LoginResponse) GetUserId added in v0.0.2

func (x *LoginResponse) GetUserId() string

func (*LoginResponse) GetUserName

func (x *LoginResponse) GetUserName() string

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, the first error encountered is returned, or nil if there are no violations.

func (*LoginResponse) ValidateAll

func (m *LoginResponse) ValidateAll() error

ValidateAll checks the field values on LoginResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in LoginResponseMultiError, or nil if none found.

type LoginResponseMultiError

type LoginResponseMultiError []error

LoginResponseMultiError is an error wrapping multiple validation errors returned by LoginResponse.ValidateAll() if the designated constraints aren't met.

func (LoginResponseMultiError) AllErrors

func (m LoginResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginResponseMultiError) Error

func (m LoginResponseMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

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 ProfileRequest added in v0.0.2

type ProfileRequest struct {
	RenewToken bool `protobuf:"varint,1,opt,name=renew_token,json=renewToken,proto3" json:"renew_token,omitempty"`
	// contains filtered or unexported fields
}

func (*ProfileRequest) Descriptor deprecated added in v0.0.2

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

Deprecated: Use ProfileRequest.ProtoReflect.Descriptor instead.

func (*ProfileRequest) GetRenewToken added in v0.0.2

func (x *ProfileRequest) GetRenewToken() bool

func (*ProfileRequest) ProtoMessage added in v0.0.2

func (*ProfileRequest) ProtoMessage()

func (*ProfileRequest) ProtoReflect added in v0.0.2

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

func (*ProfileRequest) Reset added in v0.0.2

func (x *ProfileRequest) Reset()

func (*ProfileRequest) String added in v0.0.2

func (x *ProfileRequest) String() string

func (*ProfileRequest) Validate added in v0.0.2

func (m *ProfileRequest) Validate() error

Validate checks the field values on ProfileRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ProfileRequest) ValidateAll added in v0.0.2

func (m *ProfileRequest) ValidateAll() error

ValidateAll checks the field values on ProfileRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ProfileRequestMultiError, or nil if none found.

type ProfileRequestMultiError added in v0.0.2

type ProfileRequestMultiError []error

ProfileRequestMultiError is an error wrapping multiple validation errors returned by ProfileRequest.ValidateAll() if the designated constraints aren't met.

func (ProfileRequestMultiError) AllErrors added in v0.0.2

func (m ProfileRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ProfileRequestMultiError) Error added in v0.0.2

func (m ProfileRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ProfileRequestValidationError added in v0.0.2

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

ProfileRequestValidationError is the validation error returned by ProfileRequest.Validate if the designated constraints aren't met.

func (ProfileRequestValidationError) Cause added in v0.0.2

Cause function returns cause value.

func (ProfileRequestValidationError) Error added in v0.0.2

Error satisfies the builtin error interface

func (ProfileRequestValidationError) ErrorName added in v0.0.2

func (e ProfileRequestValidationError) ErrorName() string

ErrorName returns error name.

func (ProfileRequestValidationError) Field added in v0.0.2

Field function returns field value.

func (ProfileRequestValidationError) Key added in v0.0.2

Key function returns key value.

func (ProfileRequestValidationError) Reason added in v0.0.2

Reason function returns reason value.

type ProfileResponse added in v0.0.2

type ProfileResponse struct {
	Token    string   `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
	UserId   string   `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	UserName string   `protobuf:"bytes,3,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
	ActIds   []string `protobuf:"bytes,4,rep,name=act_ids,json=actIds,proto3" json:"act_ids,omitempty"`
	BizIds   []string `protobuf:"bytes,5,rep,name=biz_ids,json=bizIds,proto3" json:"biz_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*ProfileResponse) Descriptor deprecated added in v0.0.2

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

Deprecated: Use ProfileResponse.ProtoReflect.Descriptor instead.

func (*ProfileResponse) GetActIds added in v0.0.2

func (x *ProfileResponse) GetActIds() []string

func (*ProfileResponse) GetBizIds added in v0.0.2

func (x *ProfileResponse) GetBizIds() []string

func (*ProfileResponse) GetToken added in v0.0.2

func (x *ProfileResponse) GetToken() string

func (*ProfileResponse) GetUserId added in v0.0.2

func (x *ProfileResponse) GetUserId() string

func (*ProfileResponse) GetUserName added in v0.0.2

func (x *ProfileResponse) GetUserName() string

func (*ProfileResponse) ProtoMessage added in v0.0.2

func (*ProfileResponse) ProtoMessage()

func (*ProfileResponse) ProtoReflect added in v0.0.2

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

func (*ProfileResponse) Reset added in v0.0.2

func (x *ProfileResponse) Reset()

func (*ProfileResponse) String added in v0.0.2

func (x *ProfileResponse) String() string

func (*ProfileResponse) Validate added in v0.0.2

func (m *ProfileResponse) Validate() error

Validate checks the field values on ProfileResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ProfileResponse) ValidateAll added in v0.0.2

func (m *ProfileResponse) ValidateAll() error

ValidateAll checks the field values on ProfileResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ProfileResponseMultiError, or nil if none found.

type ProfileResponseMultiError added in v0.0.2

type ProfileResponseMultiError []error

ProfileResponseMultiError is an error wrapping multiple validation errors returned by ProfileResponse.ValidateAll() if the designated constraints aren't met.

func (ProfileResponseMultiError) AllErrors added in v0.0.2

func (m ProfileResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ProfileResponseMultiError) Error added in v0.0.2

Error returns a concatenation of all the error messages it wraps.

type ProfileResponseValidationError added in v0.0.2

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

ProfileResponseValidationError is the validation error returned by ProfileResponse.Validate if the designated constraints aren't met.

func (ProfileResponseValidationError) Cause added in v0.0.2

Cause function returns cause value.

func (ProfileResponseValidationError) Error added in v0.0.2

Error satisfies the builtin error interface

func (ProfileResponseValidationError) ErrorName added in v0.0.2

func (e ProfileResponseValidationError) ErrorName() string

ErrorName returns error name.

func (ProfileResponseValidationError) Field added in v0.0.2

Field function returns field value.

func (ProfileResponseValidationError) Key added in v0.0.2

Key function returns key value.

func (ProfileResponseValidationError) Reason added in v0.0.2

Reason function returns reason value.

type QueryTalksRequest

type QueryTalksRequest struct {
	Statuses []TalkStatus `protobuf:"varint,1,rep,packed,name=statuses,proto3,enum=TalkStatus" json:"statuses,omitempty"`
	// contains filtered or unexported fields
}

func (*QueryTalksRequest) Descriptor deprecated

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

Deprecated: Use QueryTalksRequest.ProtoReflect.Descriptor instead.

func (*QueryTalksRequest) GetStatuses

func (x *QueryTalksRequest) GetStatuses() []TalkStatus

func (*QueryTalksRequest) ProtoMessage

func (*QueryTalksRequest) ProtoMessage()

func (*QueryTalksRequest) ProtoReflect

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

func (*QueryTalksRequest) Reset

func (x *QueryTalksRequest) Reset()

func (*QueryTalksRequest) String

func (x *QueryTalksRequest) String() string

func (*QueryTalksRequest) Validate

func (m *QueryTalksRequest) Validate() error

Validate checks the field values on QueryTalksRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*QueryTalksRequest) ValidateAll

func (m *QueryTalksRequest) ValidateAll() error

ValidateAll checks the field values on QueryTalksRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in QueryTalksRequestMultiError, or nil if none found.

type QueryTalksRequestMultiError

type QueryTalksRequestMultiError []error

QueryTalksRequestMultiError is an error wrapping multiple validation errors returned by QueryTalksRequest.ValidateAll() if the designated constraints aren't met.

func (QueryTalksRequestMultiError) AllErrors

func (m QueryTalksRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (QueryTalksRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type QueryTalksRequestValidationError

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

QueryTalksRequestValidationError is the validation error returned by QueryTalksRequest.Validate if the designated constraints aren't met.

func (QueryTalksRequestValidationError) Cause

Cause function returns cause value.

func (QueryTalksRequestValidationError) Error

Error satisfies the builtin error interface

func (QueryTalksRequestValidationError) ErrorName

ErrorName returns error name.

func (QueryTalksRequestValidationError) Field

Field function returns field value.

func (QueryTalksRequestValidationError) Key

Key function returns key value.

func (QueryTalksRequestValidationError) Reason

Reason function returns reason value.

type QueryTalksResponse

type QueryTalksResponse struct {
	Talks []*TalkInfo `protobuf:"bytes,1,rep,name=talks,proto3" json:"talks,omitempty"`
	// contains filtered or unexported fields
}

func (*QueryTalksResponse) Descriptor deprecated

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

Deprecated: Use QueryTalksResponse.ProtoReflect.Descriptor instead.

func (*QueryTalksResponse) GetTalks

func (x *QueryTalksResponse) GetTalks() []*TalkInfo

func (*QueryTalksResponse) ProtoMessage

func (*QueryTalksResponse) ProtoMessage()

func (*QueryTalksResponse) ProtoReflect

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

func (*QueryTalksResponse) Reset

func (x *QueryTalksResponse) Reset()

func (*QueryTalksResponse) String

func (x *QueryTalksResponse) String() string

func (*QueryTalksResponse) Validate

func (m *QueryTalksResponse) Validate() error

Validate checks the field values on QueryTalksResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*QueryTalksResponse) ValidateAll

func (m *QueryTalksResponse) ValidateAll() error

ValidateAll checks the field values on QueryTalksResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in QueryTalksResponseMultiError, or nil if none found.

type QueryTalksResponseMultiError

type QueryTalksResponseMultiError []error

QueryTalksResponseMultiError is an error wrapping multiple validation errors returned by QueryTalksResponse.ValidateAll() if the designated constraints aren't met.

func (QueryTalksResponseMultiError) AllErrors

func (m QueryTalksResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (QueryTalksResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type QueryTalksResponseValidationError

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

QueryTalksResponseValidationError is the validation error returned by QueryTalksResponse.Validate if the designated constraints aren't met.

func (QueryTalksResponseValidationError) Cause

Cause function returns cause value.

func (QueryTalksResponseValidationError) Error

Error satisfies the builtin error interface

func (QueryTalksResponseValidationError) ErrorName

ErrorName returns error name.

func (QueryTalksResponseValidationError) Field

Field function returns field value.

func (QueryTalksResponseValidationError) Key

Key function returns key value.

func (QueryTalksResponseValidationError) Reason

Reason function returns reason value.

type RegisterRequest

type RegisterRequest struct {
	UserName string `protobuf:"bytes,1,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
	Password string `protobuf:"bytes,2,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) GetPassword

func (x *RegisterRequest) GetPassword() string

func (*RegisterRequest) GetUserName

func (x *RegisterRequest) GetUserName() 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, the first error encountered is returned, or nil if there are no violations.

func (*RegisterRequest) ValidateAll

func (m *RegisterRequest) ValidateAll() error

ValidateAll checks the field values on RegisterRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RegisterRequestMultiError, or nil if none found.

type RegisterRequestMultiError

type RegisterRequestMultiError []error

RegisterRequestMultiError is an error wrapping multiple validation errors returned by RegisterRequest.ValidateAll() if the designated constraints aren't met.

func (RegisterRequestMultiError) AllErrors

func (m RegisterRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RegisterRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

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 {
	Token    string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
	UserId   string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	UserName string `protobuf:"bytes,3,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
	// contains filtered or unexported fields
}

func (*RegisterResponse) Descriptor deprecated

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

Deprecated: Use RegisterResponse.ProtoReflect.Descriptor instead.

func (*RegisterResponse) GetToken

func (x *RegisterResponse) GetToken() string

func (*RegisterResponse) GetUserId added in v0.0.2

func (x *RegisterResponse) GetUserId() string

func (*RegisterResponse) GetUserName

func (x *RegisterResponse) GetUserName() string

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, the first error encountered is returned, or nil if there are no violations.

func (*RegisterResponse) ValidateAll

func (m *RegisterResponse) ValidateAll() error

ValidateAll checks the field values on RegisterResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RegisterResponseMultiError, or nil if none found.

type RegisterResponseMultiError

type RegisterResponseMultiError []error

RegisterResponseMultiError is an error wrapping multiple validation errors returned by RegisterResponse.ValidateAll() if the designated constraints aren't met.

func (RegisterResponseMultiError) AllErrors

func (m RegisterResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RegisterResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

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 ServiceAttachRequest

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

func (*ServiceAttachRequest) Descriptor deprecated

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

Deprecated: Use ServiceAttachRequest.ProtoReflect.Descriptor instead.

func (*ServiceAttachRequest) GetTalkId

func (x *ServiceAttachRequest) GetTalkId() string

func (*ServiceAttachRequest) ProtoMessage

func (*ServiceAttachRequest) ProtoMessage()

func (*ServiceAttachRequest) ProtoReflect

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

func (*ServiceAttachRequest) Reset

func (x *ServiceAttachRequest) Reset()

func (*ServiceAttachRequest) String

func (x *ServiceAttachRequest) String() string

func (*ServiceAttachRequest) Validate

func (m *ServiceAttachRequest) Validate() error

Validate checks the field values on ServiceAttachRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ServiceAttachRequest) ValidateAll

func (m *ServiceAttachRequest) ValidateAll() error

ValidateAll checks the field values on ServiceAttachRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ServiceAttachRequestMultiError, or nil if none found.

type ServiceAttachRequestMultiError

type ServiceAttachRequestMultiError []error

ServiceAttachRequestMultiError is an error wrapping multiple validation errors returned by ServiceAttachRequest.ValidateAll() if the designated constraints aren't met.

func (ServiceAttachRequestMultiError) AllErrors

func (m ServiceAttachRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ServiceAttachRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ServiceAttachRequestValidationError

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

ServiceAttachRequestValidationError is the validation error returned by ServiceAttachRequest.Validate if the designated constraints aren't met.

func (ServiceAttachRequestValidationError) Cause

Cause function returns cause value.

func (ServiceAttachRequestValidationError) Error

Error satisfies the builtin error interface

func (ServiceAttachRequestValidationError) ErrorName

ErrorName returns error name.

func (ServiceAttachRequestValidationError) Field

Field function returns field value.

func (ServiceAttachRequestValidationError) Key

Key function returns key value.

func (ServiceAttachRequestValidationError) Reason

Reason function returns reason value.

type ServiceAttachTalkResponse

type ServiceAttachTalkResponse struct {
	Talk              *TalkInfo `protobuf:"bytes,1,opt,name=talk,proto3" json:"talk,omitempty"`
	AttachedServiceId uint64    `protobuf:"varint,2,opt,name=attached_service_id,json=attachedServiceId,proto3" json:"attached_service_id,omitempty"` // 会话附加到的客服ID,如果非0且值等于当前客户ID,代表附加到了本客服
	// contains filtered or unexported fields
}

func (*ServiceAttachTalkResponse) Descriptor deprecated

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

Deprecated: Use ServiceAttachTalkResponse.ProtoReflect.Descriptor instead.

func (*ServiceAttachTalkResponse) GetAttachedServiceId

func (x *ServiceAttachTalkResponse) GetAttachedServiceId() uint64

func (*ServiceAttachTalkResponse) GetTalk

func (x *ServiceAttachTalkResponse) GetTalk() *TalkInfo

func (*ServiceAttachTalkResponse) ProtoMessage

func (*ServiceAttachTalkResponse) ProtoMessage()

func (*ServiceAttachTalkResponse) ProtoReflect

func (*ServiceAttachTalkResponse) Reset

func (x *ServiceAttachTalkResponse) Reset()

func (*ServiceAttachTalkResponse) String

func (x *ServiceAttachTalkResponse) String() string

func (*ServiceAttachTalkResponse) Validate

func (m *ServiceAttachTalkResponse) Validate() error

Validate checks the field values on ServiceAttachTalkResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ServiceAttachTalkResponse) ValidateAll

func (m *ServiceAttachTalkResponse) ValidateAll() error

ValidateAll checks the field values on ServiceAttachTalkResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ServiceAttachTalkResponseMultiError, or nil if none found.

type ServiceAttachTalkResponseMultiError

type ServiceAttachTalkResponseMultiError []error

ServiceAttachTalkResponseMultiError is an error wrapping multiple validation errors returned by ServiceAttachTalkResponse.ValidateAll() if the designated constraints aren't met.

func (ServiceAttachTalkResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (ServiceAttachTalkResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ServiceAttachTalkResponseValidationError

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

ServiceAttachTalkResponseValidationError is the validation error returned by ServiceAttachTalkResponse.Validate if the designated constraints aren't met.

func (ServiceAttachTalkResponseValidationError) Cause

Cause function returns cause value.

func (ServiceAttachTalkResponseValidationError) Error

Error satisfies the builtin error interface

func (ServiceAttachTalkResponseValidationError) ErrorName

ErrorName returns error name.

func (ServiceAttachTalkResponseValidationError) Field

Field function returns field value.

func (ServiceAttachTalkResponseValidationError) Key

Key function returns key value.

func (ServiceAttachTalkResponseValidationError) Reason

Reason function returns reason value.

type ServiceAttachedTalksResponse

type ServiceAttachedTalksResponse struct {
	Talks []*ServiceTalkInfoAndMessages `protobuf:"bytes,2,rep,name=talks,proto3" json:"talks,omitempty"`
	// contains filtered or unexported fields
}

func (*ServiceAttachedTalksResponse) Descriptor deprecated

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

Deprecated: Use ServiceAttachedTalksResponse.ProtoReflect.Descriptor instead.

func (*ServiceAttachedTalksResponse) GetTalks

func (*ServiceAttachedTalksResponse) ProtoMessage

func (*ServiceAttachedTalksResponse) ProtoMessage()

func (*ServiceAttachedTalksResponse) ProtoReflect

func (*ServiceAttachedTalksResponse) Reset

func (x *ServiceAttachedTalksResponse) Reset()

func (*ServiceAttachedTalksResponse) String

func (*ServiceAttachedTalksResponse) Validate

func (m *ServiceAttachedTalksResponse) Validate() error

Validate checks the field values on ServiceAttachedTalksResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ServiceAttachedTalksResponse) ValidateAll

func (m *ServiceAttachedTalksResponse) ValidateAll() error

ValidateAll checks the field values on ServiceAttachedTalksResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ServiceAttachedTalksResponseMultiError, or nil if none found.

type ServiceAttachedTalksResponseMultiError

type ServiceAttachedTalksResponseMultiError []error

ServiceAttachedTalksResponseMultiError is an error wrapping multiple validation errors returned by ServiceAttachedTalksResponse.ValidateAll() if the designated constraints aren't met.

func (ServiceAttachedTalksResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (ServiceAttachedTalksResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ServiceAttachedTalksResponseValidationError

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

ServiceAttachedTalksResponseValidationError is the validation error returned by ServiceAttachedTalksResponse.Validate if the designated constraints aren't met.

func (ServiceAttachedTalksResponseValidationError) Cause

Cause function returns cause value.

func (ServiceAttachedTalksResponseValidationError) Error

Error satisfies the builtin error interface

func (ServiceAttachedTalksResponseValidationError) ErrorName

ErrorName returns error name.

func (ServiceAttachedTalksResponseValidationError) Field

Field function returns field value.

func (ServiceAttachedTalksResponseValidationError) Key

Key function returns key value.

func (ServiceAttachedTalksResponseValidationError) Reason

Reason function returns reason value.

type ServiceDetachRequest

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

func (*ServiceDetachRequest) Descriptor deprecated

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

Deprecated: Use ServiceDetachRequest.ProtoReflect.Descriptor instead.

func (*ServiceDetachRequest) GetTalkId

func (x *ServiceDetachRequest) GetTalkId() string

func (*ServiceDetachRequest) ProtoMessage

func (*ServiceDetachRequest) ProtoMessage()

func (*ServiceDetachRequest) ProtoReflect

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

func (*ServiceDetachRequest) Reset

func (x *ServiceDetachRequest) Reset()

func (*ServiceDetachRequest) String

func (x *ServiceDetachRequest) String() string

func (*ServiceDetachRequest) Validate

func (m *ServiceDetachRequest) Validate() error

Validate checks the field values on ServiceDetachRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ServiceDetachRequest) ValidateAll

func (m *ServiceDetachRequest) ValidateAll() error

ValidateAll checks the field values on ServiceDetachRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ServiceDetachRequestMultiError, or nil if none found.

type ServiceDetachRequestMultiError

type ServiceDetachRequestMultiError []error

ServiceDetachRequestMultiError is an error wrapping multiple validation errors returned by ServiceDetachRequest.ValidateAll() if the designated constraints aren't met.

func (ServiceDetachRequestMultiError) AllErrors

func (m ServiceDetachRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ServiceDetachRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ServiceDetachRequestValidationError

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

ServiceDetachRequestValidationError is the validation error returned by ServiceDetachRequest.Validate if the designated constraints aren't met.

func (ServiceDetachRequestValidationError) Cause

Cause function returns cause value.

func (ServiceDetachRequestValidationError) Error

Error satisfies the builtin error interface

func (ServiceDetachRequestValidationError) ErrorName

ErrorName returns error name.

func (ServiceDetachRequestValidationError) Field

Field function returns field value.

func (ServiceDetachRequestValidationError) Key

Key function returns key value.

func (ServiceDetachRequestValidationError) Reason

Reason function returns reason value.

type ServiceDetachTalkResponse

type ServiceDetachTalkResponse struct {
	Talk              *TalkInfo `protobuf:"bytes,1,opt,name=talk,proto3" json:"talk,omitempty"`
	DetachedServiceId uint64    `protobuf:"varint,2,opt,name=detached_service_id,json=detachedServiceId,proto3" json:"detached_service_id,omitempty"` // 被剥夺会话的客服ID,如果非0且值等于当前客户ID,代表本客服被剥夺此会话
	// contains filtered or unexported fields
}

func (*ServiceDetachTalkResponse) Descriptor deprecated

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

Deprecated: Use ServiceDetachTalkResponse.ProtoReflect.Descriptor instead.

func (*ServiceDetachTalkResponse) GetDetachedServiceId

func (x *ServiceDetachTalkResponse) GetDetachedServiceId() uint64

func (*ServiceDetachTalkResponse) GetTalk

func (x *ServiceDetachTalkResponse) GetTalk() *TalkInfo

func (*ServiceDetachTalkResponse) ProtoMessage

func (*ServiceDetachTalkResponse) ProtoMessage()

func (*ServiceDetachTalkResponse) ProtoReflect

func (*ServiceDetachTalkResponse) Reset

func (x *ServiceDetachTalkResponse) Reset()

func (*ServiceDetachTalkResponse) String

func (x *ServiceDetachTalkResponse) String() string

func (*ServiceDetachTalkResponse) Validate

func (m *ServiceDetachTalkResponse) Validate() error

Validate checks the field values on ServiceDetachTalkResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ServiceDetachTalkResponse) ValidateAll

func (m *ServiceDetachTalkResponse) ValidateAll() error

ValidateAll checks the field values on ServiceDetachTalkResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ServiceDetachTalkResponseMultiError, or nil if none found.

type ServiceDetachTalkResponseMultiError

type ServiceDetachTalkResponseMultiError []error

ServiceDetachTalkResponseMultiError is an error wrapping multiple validation errors returned by ServiceDetachTalkResponse.ValidateAll() if the designated constraints aren't met.

func (ServiceDetachTalkResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (ServiceDetachTalkResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ServiceDetachTalkResponseValidationError

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

ServiceDetachTalkResponseValidationError is the validation error returned by ServiceDetachTalkResponse.Validate if the designated constraints aren't met.

func (ServiceDetachTalkResponseValidationError) Cause

Cause function returns cause value.

func (ServiceDetachTalkResponseValidationError) Error

Error satisfies the builtin error interface

func (ServiceDetachTalkResponseValidationError) ErrorName

ErrorName returns error name.

func (ServiceDetachTalkResponseValidationError) Field

Field function returns field value.

func (ServiceDetachTalkResponseValidationError) Key

Key function returns key value.

func (ServiceDetachTalkResponseValidationError) Reason

Reason function returns reason value.

type ServiceMessageConfirmed

type ServiceMessageConfirmed struct {
	SeqId uint64 `protobuf:"varint,1,opt,name=seq_id,json=seqId,proto3" json:"seq_id,omitempty"`
	At    uint64 `protobuf:"varint,2,opt,name=at,proto3" json:"at,omitempty"`
	// contains filtered or unexported fields
}

func (*ServiceMessageConfirmed) Descriptor deprecated

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

Deprecated: Use ServiceMessageConfirmed.ProtoReflect.Descriptor instead.

func (*ServiceMessageConfirmed) GetAt

func (x *ServiceMessageConfirmed) GetAt() uint64

func (*ServiceMessageConfirmed) GetSeqId

func (x *ServiceMessageConfirmed) GetSeqId() uint64

func (*ServiceMessageConfirmed) ProtoMessage

func (*ServiceMessageConfirmed) ProtoMessage()

func (*ServiceMessageConfirmed) ProtoReflect

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

func (*ServiceMessageConfirmed) Reset

func (x *ServiceMessageConfirmed) Reset()

func (*ServiceMessageConfirmed) String

func (x *ServiceMessageConfirmed) String() string

func (*ServiceMessageConfirmed) Validate

func (m *ServiceMessageConfirmed) Validate() error

Validate checks the field values on ServiceMessageConfirmed with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ServiceMessageConfirmed) ValidateAll

func (m *ServiceMessageConfirmed) ValidateAll() error

ValidateAll checks the field values on ServiceMessageConfirmed with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ServiceMessageConfirmedMultiError, or nil if none found.

type ServiceMessageConfirmedMultiError

type ServiceMessageConfirmedMultiError []error

ServiceMessageConfirmedMultiError is an error wrapping multiple validation errors returned by ServiceMessageConfirmed.ValidateAll() if the designated constraints aren't met.

func (ServiceMessageConfirmedMultiError) AllErrors

func (m ServiceMessageConfirmedMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ServiceMessageConfirmedMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ServiceMessageConfirmedValidationError

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

ServiceMessageConfirmedValidationError is the validation error returned by ServiceMessageConfirmed.Validate if the designated constraints aren't met.

func (ServiceMessageConfirmedValidationError) Cause

Cause function returns cause value.

func (ServiceMessageConfirmedValidationError) Error

Error satisfies the builtin error interface

func (ServiceMessageConfirmedValidationError) ErrorName

ErrorName returns error name.

func (ServiceMessageConfirmedValidationError) Field

Field function returns field value.

func (ServiceMessageConfirmedValidationError) Key

Key function returns key value.

func (ServiceMessageConfirmedValidationError) Reason

Reason function returns reason value.

type ServicePendingTalksResponse

type ServicePendingTalksResponse struct {
	Talks []*TalkInfo `protobuf:"bytes,2,rep,name=talks,proto3" json:"talks,omitempty"`
	// contains filtered or unexported fields
}

func (*ServicePendingTalksResponse) Descriptor deprecated

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

Deprecated: Use ServicePendingTalksResponse.ProtoReflect.Descriptor instead.

func (*ServicePendingTalksResponse) GetTalks

func (x *ServicePendingTalksResponse) GetTalks() []*TalkInfo

func (*ServicePendingTalksResponse) ProtoMessage

func (*ServicePendingTalksResponse) ProtoMessage()

func (*ServicePendingTalksResponse) ProtoReflect

func (*ServicePendingTalksResponse) Reset

func (x *ServicePendingTalksResponse) Reset()

func (*ServicePendingTalksResponse) String

func (x *ServicePendingTalksResponse) String() string

func (*ServicePendingTalksResponse) Validate

func (m *ServicePendingTalksResponse) Validate() error

Validate checks the field values on ServicePendingTalksResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ServicePendingTalksResponse) ValidateAll

func (m *ServicePendingTalksResponse) ValidateAll() error

ValidateAll checks the field values on ServicePendingTalksResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ServicePendingTalksResponseMultiError, or nil if none found.

type ServicePendingTalksResponseMultiError

type ServicePendingTalksResponseMultiError []error

ServicePendingTalksResponseMultiError is an error wrapping multiple validation errors returned by ServicePendingTalksResponse.ValidateAll() if the designated constraints aren't met.

func (ServicePendingTalksResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (ServicePendingTalksResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ServicePendingTalksResponseValidationError

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

ServicePendingTalksResponseValidationError is the validation error returned by ServicePendingTalksResponse.Validate if the designated constraints aren't met.

func (ServicePendingTalksResponseValidationError) Cause

Cause function returns cause value.

func (ServicePendingTalksResponseValidationError) Error

Error satisfies the builtin error interface

func (ServicePendingTalksResponseValidationError) ErrorName

ErrorName returns error name.

func (ServicePendingTalksResponseValidationError) Field

Field function returns field value.

func (ServicePendingTalksResponseValidationError) Key

Key function returns key value.

func (ServicePendingTalksResponseValidationError) Reason

Reason function returns reason value.

type ServicePostMessage

type ServicePostMessage struct {
	TalkId  string        `protobuf:"bytes,1,opt,name=talk_id,json=talkId,proto3" json:"talk_id,omitempty"`
	Message *TalkMessageW `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*ServicePostMessage) Descriptor deprecated

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

Deprecated: Use ServicePostMessage.ProtoReflect.Descriptor instead.

func (*ServicePostMessage) GetMessage

func (x *ServicePostMessage) GetMessage() *TalkMessageW

func (*ServicePostMessage) GetTalkId

func (x *ServicePostMessage) GetTalkId() string

func (*ServicePostMessage) ProtoMessage

func (*ServicePostMessage) ProtoMessage()

func (*ServicePostMessage) ProtoReflect

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

func (*ServicePostMessage) Reset

func (x *ServicePostMessage) Reset()

func (*ServicePostMessage) String

func (x *ServicePostMessage) String() string

func (*ServicePostMessage) Validate

func (m *ServicePostMessage) Validate() error

Validate checks the field values on ServicePostMessage with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ServicePostMessage) ValidateAll

func (m *ServicePostMessage) ValidateAll() error

ValidateAll checks the field values on ServicePostMessage with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ServicePostMessageMultiError, or nil if none found.

type ServicePostMessageMultiError

type ServicePostMessageMultiError []error

ServicePostMessageMultiError is an error wrapping multiple validation errors returned by ServicePostMessage.ValidateAll() if the designated constraints aren't met.

func (ServicePostMessageMultiError) AllErrors

func (m ServicePostMessageMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ServicePostMessageMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ServicePostMessageValidationError

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

ServicePostMessageValidationError is the validation error returned by ServicePostMessage.Validate if the designated constraints aren't met.

func (ServicePostMessageValidationError) Cause

Cause function returns cause value.

func (ServicePostMessageValidationError) Error

Error satisfies the builtin error interface

func (ServicePostMessageValidationError) ErrorName

ErrorName returns error name.

func (ServicePostMessageValidationError) Field

Field function returns field value.

func (ServicePostMessageValidationError) Key

Key function returns key value.

func (ServicePostMessageValidationError) Reason

Reason function returns reason value.

type ServiceQueryAttachedTalksRequest

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

func (*ServiceQueryAttachedTalksRequest) Descriptor deprecated

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

Deprecated: Use ServiceQueryAttachedTalksRequest.ProtoReflect.Descriptor instead.

func (*ServiceQueryAttachedTalksRequest) ProtoMessage

func (*ServiceQueryAttachedTalksRequest) ProtoMessage()

func (*ServiceQueryAttachedTalksRequest) ProtoReflect

func (*ServiceQueryAttachedTalksRequest) Reset

func (*ServiceQueryAttachedTalksRequest) String

func (*ServiceQueryAttachedTalksRequest) Validate

Validate checks the field values on ServiceQueryAttachedTalksRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ServiceQueryAttachedTalksRequest) ValidateAll

func (m *ServiceQueryAttachedTalksRequest) ValidateAll() error

ValidateAll checks the field values on ServiceQueryAttachedTalksRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ServiceQueryAttachedTalksRequestMultiError, or nil if none found.

type ServiceQueryAttachedTalksRequestMultiError

type ServiceQueryAttachedTalksRequestMultiError []error

ServiceQueryAttachedTalksRequestMultiError is an error wrapping multiple validation errors returned by ServiceQueryAttachedTalksRequest.ValidateAll() if the designated constraints aren't met.

func (ServiceQueryAttachedTalksRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (ServiceQueryAttachedTalksRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ServiceQueryAttachedTalksRequestValidationError

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

ServiceQueryAttachedTalksRequestValidationError is the validation error returned by ServiceQueryAttachedTalksRequest.Validate if the designated constraints aren't met.

func (ServiceQueryAttachedTalksRequestValidationError) Cause

Cause function returns cause value.

func (ServiceQueryAttachedTalksRequestValidationError) Error

Error satisfies the builtin error interface

func (ServiceQueryAttachedTalksRequestValidationError) ErrorName

ErrorName returns error name.

func (ServiceQueryAttachedTalksRequestValidationError) Field

Field function returns field value.

func (ServiceQueryAttachedTalksRequestValidationError) Key

Key function returns key value.

func (ServiceQueryAttachedTalksRequestValidationError) Reason

Reason function returns reason value.

type ServiceQueryPendingTalksRequest

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

func (*ServiceQueryPendingTalksRequest) Descriptor deprecated

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

Deprecated: Use ServiceQueryPendingTalksRequest.ProtoReflect.Descriptor instead.

func (*ServiceQueryPendingTalksRequest) ProtoMessage

func (*ServiceQueryPendingTalksRequest) ProtoMessage()

func (*ServiceQueryPendingTalksRequest) ProtoReflect

func (*ServiceQueryPendingTalksRequest) Reset

func (*ServiceQueryPendingTalksRequest) String

func (*ServiceQueryPendingTalksRequest) Validate

func (m *ServiceQueryPendingTalksRequest) Validate() error

Validate checks the field values on ServiceQueryPendingTalksRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ServiceQueryPendingTalksRequest) ValidateAll

func (m *ServiceQueryPendingTalksRequest) ValidateAll() error

ValidateAll checks the field values on ServiceQueryPendingTalksRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ServiceQueryPendingTalksRequestMultiError, or nil if none found.

type ServiceQueryPendingTalksRequestMultiError

type ServiceQueryPendingTalksRequestMultiError []error

ServiceQueryPendingTalksRequestMultiError is an error wrapping multiple validation errors returned by ServiceQueryPendingTalksRequest.ValidateAll() if the designated constraints aren't met.

func (ServiceQueryPendingTalksRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (ServiceQueryPendingTalksRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ServiceQueryPendingTalksRequestValidationError

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

ServiceQueryPendingTalksRequestValidationError is the validation error returned by ServiceQueryPendingTalksRequest.Validate if the designated constraints aren't met.

func (ServiceQueryPendingTalksRequestValidationError) Cause

Cause function returns cause value.

func (ServiceQueryPendingTalksRequestValidationError) Error

Error satisfies the builtin error interface

func (ServiceQueryPendingTalksRequestValidationError) ErrorName

ErrorName returns error name.

func (ServiceQueryPendingTalksRequestValidationError) Field

Field function returns field value.

func (ServiceQueryPendingTalksRequestValidationError) Key

Key function returns key value.

func (ServiceQueryPendingTalksRequestValidationError) Reason

Reason function returns reason value.

type ServiceReloadTalkRequest

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

func (*ServiceReloadTalkRequest) Descriptor deprecated

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

Deprecated: Use ServiceReloadTalkRequest.ProtoReflect.Descriptor instead.

func (*ServiceReloadTalkRequest) GetTalkId

func (x *ServiceReloadTalkRequest) GetTalkId() string

func (*ServiceReloadTalkRequest) ProtoMessage

func (*ServiceReloadTalkRequest) ProtoMessage()

func (*ServiceReloadTalkRequest) ProtoReflect

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

func (*ServiceReloadTalkRequest) Reset

func (x *ServiceReloadTalkRequest) Reset()

func (*ServiceReloadTalkRequest) String

func (x *ServiceReloadTalkRequest) String() string

func (*ServiceReloadTalkRequest) Validate

func (m *ServiceReloadTalkRequest) Validate() error

Validate checks the field values on ServiceReloadTalkRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ServiceReloadTalkRequest) ValidateAll

func (m *ServiceReloadTalkRequest) ValidateAll() error

ValidateAll checks the field values on ServiceReloadTalkRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ServiceReloadTalkRequestMultiError, or nil if none found.

type ServiceReloadTalkRequestMultiError

type ServiceReloadTalkRequestMultiError []error

ServiceReloadTalkRequestMultiError is an error wrapping multiple validation errors returned by ServiceReloadTalkRequest.ValidateAll() if the designated constraints aren't met.

func (ServiceReloadTalkRequestMultiError) AllErrors

func (m ServiceReloadTalkRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ServiceReloadTalkRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ServiceReloadTalkRequestValidationError

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

ServiceReloadTalkRequestValidationError is the validation error returned by ServiceReloadTalkRequest.Validate if the designated constraints aren't met.

func (ServiceReloadTalkRequestValidationError) Cause

Cause function returns cause value.

func (ServiceReloadTalkRequestValidationError) Error

Error satisfies the builtin error interface

func (ServiceReloadTalkRequestValidationError) ErrorName

ErrorName returns error name.

func (ServiceReloadTalkRequestValidationError) Field

Field function returns field value.

func (ServiceReloadTalkRequestValidationError) Key

Key function returns key value.

func (ServiceReloadTalkRequestValidationError) Reason

Reason function returns reason value.

type ServiceRequest

type ServiceRequest struct {

	// Types that are assignable to Request:
	//	*ServiceRequest_AttachedTalks
	//	*ServiceRequest_PendingTalks
	//	*ServiceRequest_Reload
	//	*ServiceRequest_Message
	//	*ServiceRequest_Attach
	//	*ServiceRequest_Detach
	Request isServiceRequest_Request `protobuf_oneof:"Request"`
	// contains filtered or unexported fields
}

func (*ServiceRequest) Descriptor deprecated

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

Deprecated: Use ServiceRequest.ProtoReflect.Descriptor instead.

func (*ServiceRequest) GetAttach

func (x *ServiceRequest) GetAttach() *ServiceAttachRequest

func (*ServiceRequest) GetAttachedTalks

func (x *ServiceRequest) GetAttachedTalks() *ServiceQueryAttachedTalksRequest

func (*ServiceRequest) GetDetach

func (x *ServiceRequest) GetDetach() *ServiceDetachRequest

func (*ServiceRequest) GetMessage

func (x *ServiceRequest) GetMessage() *ServicePostMessage

func (*ServiceRequest) GetPendingTalks

func (x *ServiceRequest) GetPendingTalks() *ServiceQueryPendingTalksRequest

func (*ServiceRequest) GetReload

func (x *ServiceRequest) GetReload() *ServiceReloadTalkRequest

func (*ServiceRequest) GetRequest

func (m *ServiceRequest) GetRequest() isServiceRequest_Request

func (*ServiceRequest) ProtoMessage

func (*ServiceRequest) ProtoMessage()

func (*ServiceRequest) ProtoReflect

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

func (*ServiceRequest) Reset

func (x *ServiceRequest) Reset()

func (*ServiceRequest) String

func (x *ServiceRequest) String() string

func (*ServiceRequest) Validate

func (m *ServiceRequest) Validate() error

Validate checks the field values on ServiceRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ServiceRequest) ValidateAll

func (m *ServiceRequest) ValidateAll() error

ValidateAll checks the field values on ServiceRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ServiceRequestMultiError, or nil if none found.

type ServiceRequestMultiError

type ServiceRequestMultiError []error

ServiceRequestMultiError is an error wrapping multiple validation errors returned by ServiceRequest.ValidateAll() if the designated constraints aren't met.

func (ServiceRequestMultiError) AllErrors

func (m ServiceRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ServiceRequestMultiError) Error

func (m ServiceRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ServiceRequestValidationError

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

ServiceRequestValidationError is the validation error returned by ServiceRequest.Validate if the designated constraints aren't met.

func (ServiceRequestValidationError) Cause

Cause function returns cause value.

func (ServiceRequestValidationError) Error

Error satisfies the builtin error interface

func (ServiceRequestValidationError) ErrorName

func (e ServiceRequestValidationError) ErrorName() string

ErrorName returns error name.

func (ServiceRequestValidationError) Field

Field function returns field value.

func (ServiceRequestValidationError) Key

Key function returns key value.

func (ServiceRequestValidationError) Reason

Reason function returns reason value.

type ServiceRequest_Attach

type ServiceRequest_Attach struct {
	Attach *ServiceAttachRequest `protobuf:"bytes,5,opt,name=attach,proto3,oneof"`
}

type ServiceRequest_AttachedTalks

type ServiceRequest_AttachedTalks struct {
	AttachedTalks *ServiceQueryAttachedTalksRequest `protobuf:"bytes,1,opt,name=attached_talks,json=attachedTalks,proto3,oneof"`
}

type ServiceRequest_Detach

type ServiceRequest_Detach struct {
	Detach *ServiceDetachRequest `protobuf:"bytes,6,opt,name=detach,proto3,oneof"`
}

type ServiceRequest_Message

type ServiceRequest_Message struct {
	Message *ServicePostMessage `protobuf:"bytes,4,opt,name=message,proto3,oneof"`
}

type ServiceRequest_PendingTalks

type ServiceRequest_PendingTalks struct {
	PendingTalks *ServiceQueryPendingTalksRequest `protobuf:"bytes,2,opt,name=pending_talks,json=pendingTalks,proto3,oneof"`
}

type ServiceRequest_Reload

type ServiceRequest_Reload struct {
	Reload *ServiceReloadTalkRequest `protobuf:"bytes,3,opt,name=reload,proto3,oneof"`
}

type ServiceResponse

type ServiceResponse struct {

	// Types that are assignable to Response:
	//	*ServiceResponse_KickOut
	//	*ServiceResponse_PendingTalks
	//	*ServiceResponse_Talks
	//	*ServiceResponse_Attach
	//	*ServiceResponse_Detach
	//	*ServiceResponse_Reload
	//	*ServiceResponse_Message
	//	*ServiceResponse_Notify
	//	*ServiceResponse_MessageConfirmed
	//	*ServiceResponse_Close
	Response isServiceResponse_Response `protobuf_oneof:"Response"`
	// contains filtered or unexported fields
}

func (*ServiceResponse) Descriptor deprecated

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

Deprecated: Use ServiceResponse.ProtoReflect.Descriptor instead.

func (*ServiceResponse) GetAttach

func (*ServiceResponse) GetClose

func (x *ServiceResponse) GetClose() *ServiceTalkClose

func (*ServiceResponse) GetDetach

func (*ServiceResponse) GetKickOut

func (x *ServiceResponse) GetKickOut() *TalkKickOutMessage

func (*ServiceResponse) GetMessage

func (*ServiceResponse) GetMessageConfirmed

func (x *ServiceResponse) GetMessageConfirmed() *ServiceMessageConfirmed

func (*ServiceResponse) GetNotify

func (*ServiceResponse) GetPendingTalks

func (x *ServiceResponse) GetPendingTalks() *ServicePendingTalksResponse

func (*ServiceResponse) GetReload

func (*ServiceResponse) GetResponse

func (m *ServiceResponse) GetResponse() isServiceResponse_Response

func (*ServiceResponse) GetTalks

func (*ServiceResponse) ProtoMessage

func (*ServiceResponse) ProtoMessage()

func (*ServiceResponse) ProtoReflect

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

func (*ServiceResponse) Reset

func (x *ServiceResponse) Reset()

func (*ServiceResponse) String

func (x *ServiceResponse) String() string

func (*ServiceResponse) Validate

func (m *ServiceResponse) Validate() error

Validate checks the field values on ServiceResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ServiceResponse) ValidateAll

func (m *ServiceResponse) ValidateAll() error

ValidateAll checks the field values on ServiceResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ServiceResponseMultiError, or nil if none found.

type ServiceResponseMultiError

type ServiceResponseMultiError []error

ServiceResponseMultiError is an error wrapping multiple validation errors returned by ServiceResponse.ValidateAll() if the designated constraints aren't met.

func (ServiceResponseMultiError) AllErrors

func (m ServiceResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ServiceResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ServiceResponseValidationError

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

ServiceResponseValidationError is the validation error returned by ServiceResponse.Validate if the designated constraints aren't met.

func (ServiceResponseValidationError) Cause

Cause function returns cause value.

func (ServiceResponseValidationError) Error

Error satisfies the builtin error interface

func (ServiceResponseValidationError) ErrorName

func (e ServiceResponseValidationError) ErrorName() string

ErrorName returns error name.

func (ServiceResponseValidationError) Field

Field function returns field value.

func (ServiceResponseValidationError) Key

Key function returns key value.

func (ServiceResponseValidationError) Reason

Reason function returns reason value.

type ServiceResponse_Attach

type ServiceResponse_Attach struct {
	Attach *ServiceAttachTalkResponse `protobuf:"bytes,4,opt,name=attach,proto3,oneof"` // 会话变为被分配状态
}

type ServiceResponse_Close

type ServiceResponse_Close struct {
	Close *ServiceTalkClose `protobuf:"bytes,10,opt,name=close,proto3,oneof"` // 会话被关闭
}

type ServiceResponse_Detach

type ServiceResponse_Detach struct {
	Detach *ServiceDetachTalkResponse `protobuf:"bytes,5,opt,name=detach,proto3,oneof"` // 会话变为未分配状态
}

type ServiceResponse_KickOut

type ServiceResponse_KickOut struct {
	KickOut *TalkKickOutMessage `protobuf:"bytes,1,opt,name=kick_out,json=kickOut,proto3,oneof"` // 客服被踢出登录
}

type ServiceResponse_Message

type ServiceResponse_Message struct {
	Message *ServiceTalkMessageResponse `protobuf:"bytes,7,opt,name=message,proto3,oneof"` // 会话中新增消息
}

type ServiceResponse_MessageConfirmed

type ServiceResponse_MessageConfirmed struct {
	MessageConfirmed *ServiceMessageConfirmed `protobuf:"bytes,9,opt,name=message_confirmed,json=messageConfirmed,proto3,oneof"` // 会话中新增消息回应
}

type ServiceResponse_Notify

type ServiceResponse_Notify struct {
	Notify *ServiceTalkNotifyResponse `protobuf:"bytes,8,opt,name=notify,proto3,oneof"` // notify
}

type ServiceResponse_PendingTalks

type ServiceResponse_PendingTalks struct {
	PendingTalks *ServicePendingTalksResponse `protobuf:"bytes,2,opt,name=pending_talks,json=pendingTalks,proto3,oneof"` // 刷新未分配会话列表
}

type ServiceResponse_Reload

type ServiceResponse_Reload struct {
	Reload *ServiceTalkReloadResponse `protobuf:"bytes,6,opt,name=reload,proto3,oneof"` // 会话加载回应
}

type ServiceResponse_Talks

type ServiceResponse_Talks struct {
	Talks *ServiceAttachedTalksResponse `protobuf:"bytes,3,opt,name=talks,proto3,oneof"` // 刷新客服处理的所有会话
}

type ServiceTalkClose

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

func (*ServiceTalkClose) Descriptor deprecated

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

Deprecated: Use ServiceTalkClose.ProtoReflect.Descriptor instead.

func (*ServiceTalkClose) GetTalkId

func (x *ServiceTalkClose) GetTalkId() string

func (*ServiceTalkClose) ProtoMessage

func (*ServiceTalkClose) ProtoMessage()

func (*ServiceTalkClose) ProtoReflect

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

func (*ServiceTalkClose) Reset

func (x *ServiceTalkClose) Reset()

func (*ServiceTalkClose) String

func (x *ServiceTalkClose) String() string

func (*ServiceTalkClose) Validate

func (m *ServiceTalkClose) Validate() error

Validate checks the field values on ServiceTalkClose with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ServiceTalkClose) ValidateAll

func (m *ServiceTalkClose) ValidateAll() error

ValidateAll checks the field values on ServiceTalkClose with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ServiceTalkCloseMultiError, or nil if none found.

type ServiceTalkCloseMultiError

type ServiceTalkCloseMultiError []error

ServiceTalkCloseMultiError is an error wrapping multiple validation errors returned by ServiceTalkClose.ValidateAll() if the designated constraints aren't met.

func (ServiceTalkCloseMultiError) AllErrors

func (m ServiceTalkCloseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ServiceTalkCloseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ServiceTalkCloseValidationError

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

ServiceTalkCloseValidationError is the validation error returned by ServiceTalkClose.Validate if the designated constraints aren't met.

func (ServiceTalkCloseValidationError) Cause

Cause function returns cause value.

func (ServiceTalkCloseValidationError) Error

Error satisfies the builtin error interface

func (ServiceTalkCloseValidationError) ErrorName

ErrorName returns error name.

func (ServiceTalkCloseValidationError) Field

Field function returns field value.

func (ServiceTalkCloseValidationError) Key

Key function returns key value.

func (ServiceTalkCloseValidationError) Reason

Reason function returns reason value.

type ServiceTalkInfoAndMessages

type ServiceTalkInfoAndMessages struct {
	TalkInfo *TalkInfo      `protobuf:"bytes,1,opt,name=talk_info,json=talkInfo,proto3" json:"talk_info,omitempty"`
	Messages []*TalkMessage `protobuf:"bytes,2,rep,name=messages,proto3" json:"messages,omitempty"`
	// contains filtered or unexported fields
}

func (*ServiceTalkInfoAndMessages) Descriptor deprecated

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

Deprecated: Use ServiceTalkInfoAndMessages.ProtoReflect.Descriptor instead.

func (*ServiceTalkInfoAndMessages) GetMessages

func (x *ServiceTalkInfoAndMessages) GetMessages() []*TalkMessage

func (*ServiceTalkInfoAndMessages) GetTalkInfo

func (x *ServiceTalkInfoAndMessages) GetTalkInfo() *TalkInfo

func (*ServiceTalkInfoAndMessages) ProtoMessage

func (*ServiceTalkInfoAndMessages) ProtoMessage()

func (*ServiceTalkInfoAndMessages) ProtoReflect

func (*ServiceTalkInfoAndMessages) Reset

func (x *ServiceTalkInfoAndMessages) Reset()

func (*ServiceTalkInfoAndMessages) String

func (x *ServiceTalkInfoAndMessages) String() string

func (*ServiceTalkInfoAndMessages) Validate

func (m *ServiceTalkInfoAndMessages) Validate() error

Validate checks the field values on ServiceTalkInfoAndMessages with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ServiceTalkInfoAndMessages) ValidateAll

func (m *ServiceTalkInfoAndMessages) ValidateAll() error

ValidateAll checks the field values on ServiceTalkInfoAndMessages with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ServiceTalkInfoAndMessagesMultiError, or nil if none found.

type ServiceTalkInfoAndMessagesMultiError

type ServiceTalkInfoAndMessagesMultiError []error

ServiceTalkInfoAndMessagesMultiError is an error wrapping multiple validation errors returned by ServiceTalkInfoAndMessages.ValidateAll() if the designated constraints aren't met.

func (ServiceTalkInfoAndMessagesMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (ServiceTalkInfoAndMessagesMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ServiceTalkInfoAndMessagesValidationError

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

ServiceTalkInfoAndMessagesValidationError is the validation error returned by ServiceTalkInfoAndMessages.Validate if the designated constraints aren't met.

func (ServiceTalkInfoAndMessagesValidationError) Cause

Cause function returns cause value.

func (ServiceTalkInfoAndMessagesValidationError) Error

Error satisfies the builtin error interface

func (ServiceTalkInfoAndMessagesValidationError) ErrorName

ErrorName returns error name.

func (ServiceTalkInfoAndMessagesValidationError) Field

Field function returns field value.

func (ServiceTalkInfoAndMessagesValidationError) Key

Key function returns key value.

func (ServiceTalkInfoAndMessagesValidationError) Reason

Reason function returns reason value.

type ServiceTalkMessageResponse

type ServiceTalkMessageResponse struct {
	TalkId  string       `protobuf:"bytes,1,opt,name=talk_id,json=talkId,proto3" json:"talk_id,omitempty"`
	Message *TalkMessage `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*ServiceTalkMessageResponse) Descriptor deprecated

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

Deprecated: Use ServiceTalkMessageResponse.ProtoReflect.Descriptor instead.

func (*ServiceTalkMessageResponse) GetMessage

func (x *ServiceTalkMessageResponse) GetMessage() *TalkMessage

func (*ServiceTalkMessageResponse) GetTalkId

func (x *ServiceTalkMessageResponse) GetTalkId() string

func (*ServiceTalkMessageResponse) ProtoMessage

func (*ServiceTalkMessageResponse) ProtoMessage()

func (*ServiceTalkMessageResponse) ProtoReflect

func (*ServiceTalkMessageResponse) Reset

func (x *ServiceTalkMessageResponse) Reset()

func (*ServiceTalkMessageResponse) String

func (x *ServiceTalkMessageResponse) String() string

func (*ServiceTalkMessageResponse) Validate

func (m *ServiceTalkMessageResponse) Validate() error

Validate checks the field values on ServiceTalkMessageResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ServiceTalkMessageResponse) ValidateAll

func (m *ServiceTalkMessageResponse) ValidateAll() error

ValidateAll checks the field values on ServiceTalkMessageResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ServiceTalkMessageResponseMultiError, or nil if none found.

type ServiceTalkMessageResponseMultiError

type ServiceTalkMessageResponseMultiError []error

ServiceTalkMessageResponseMultiError is an error wrapping multiple validation errors returned by ServiceTalkMessageResponse.ValidateAll() if the designated constraints aren't met.

func (ServiceTalkMessageResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (ServiceTalkMessageResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ServiceTalkMessageResponseValidationError

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

ServiceTalkMessageResponseValidationError is the validation error returned by ServiceTalkMessageResponse.Validate if the designated constraints aren't met.

func (ServiceTalkMessageResponseValidationError) Cause

Cause function returns cause value.

func (ServiceTalkMessageResponseValidationError) Error

Error satisfies the builtin error interface

func (ServiceTalkMessageResponseValidationError) ErrorName

ErrorName returns error name.

func (ServiceTalkMessageResponseValidationError) Field

Field function returns field value.

func (ServiceTalkMessageResponseValidationError) Key

Key function returns key value.

func (ServiceTalkMessageResponseValidationError) Reason

Reason function returns reason value.

type ServiceTalkNotifyResponse

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

func (*ServiceTalkNotifyResponse) Descriptor deprecated

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

Deprecated: Use ServiceTalkNotifyResponse.ProtoReflect.Descriptor instead.

func (*ServiceTalkNotifyResponse) GetMsg

func (x *ServiceTalkNotifyResponse) GetMsg() string

func (*ServiceTalkNotifyResponse) ProtoMessage

func (*ServiceTalkNotifyResponse) ProtoMessage()

func (*ServiceTalkNotifyResponse) ProtoReflect

func (*ServiceTalkNotifyResponse) Reset

func (x *ServiceTalkNotifyResponse) Reset()

func (*ServiceTalkNotifyResponse) String

func (x *ServiceTalkNotifyResponse) String() string

func (*ServiceTalkNotifyResponse) Validate

func (m *ServiceTalkNotifyResponse) Validate() error

Validate checks the field values on ServiceTalkNotifyResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ServiceTalkNotifyResponse) ValidateAll

func (m *ServiceTalkNotifyResponse) ValidateAll() error

ValidateAll checks the field values on ServiceTalkNotifyResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ServiceTalkNotifyResponseMultiError, or nil if none found.

type ServiceTalkNotifyResponseMultiError

type ServiceTalkNotifyResponseMultiError []error

ServiceTalkNotifyResponseMultiError is an error wrapping multiple validation errors returned by ServiceTalkNotifyResponse.ValidateAll() if the designated constraints aren't met.

func (ServiceTalkNotifyResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (ServiceTalkNotifyResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ServiceTalkNotifyResponseValidationError

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

ServiceTalkNotifyResponseValidationError is the validation error returned by ServiceTalkNotifyResponse.Validate if the designated constraints aren't met.

func (ServiceTalkNotifyResponseValidationError) Cause

Cause function returns cause value.

func (ServiceTalkNotifyResponseValidationError) Error

Error satisfies the builtin error interface

func (ServiceTalkNotifyResponseValidationError) ErrorName

ErrorName returns error name.

func (ServiceTalkNotifyResponseValidationError) Field

Field function returns field value.

func (ServiceTalkNotifyResponseValidationError) Key

Key function returns key value.

func (ServiceTalkNotifyResponseValidationError) Reason

Reason function returns reason value.

type ServiceTalkReloadResponse

type ServiceTalkReloadResponse struct {
	Talk *ServiceTalkInfoAndMessages `protobuf:"bytes,1,opt,name=talk,proto3" json:"talk,omitempty"`
	// contains filtered or unexported fields
}

func (*ServiceTalkReloadResponse) Descriptor deprecated

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

Deprecated: Use ServiceTalkReloadResponse.ProtoReflect.Descriptor instead.

func (*ServiceTalkReloadResponse) GetTalk

func (*ServiceTalkReloadResponse) ProtoMessage

func (*ServiceTalkReloadResponse) ProtoMessage()

func (*ServiceTalkReloadResponse) ProtoReflect

func (*ServiceTalkReloadResponse) Reset

func (x *ServiceTalkReloadResponse) Reset()

func (*ServiceTalkReloadResponse) String

func (x *ServiceTalkReloadResponse) String() string

func (*ServiceTalkReloadResponse) Validate

func (m *ServiceTalkReloadResponse) Validate() error

Validate checks the field values on ServiceTalkReloadResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ServiceTalkReloadResponse) ValidateAll

func (m *ServiceTalkReloadResponse) ValidateAll() error

ValidateAll checks the field values on ServiceTalkReloadResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ServiceTalkReloadResponseMultiError, or nil if none found.

type ServiceTalkReloadResponseMultiError

type ServiceTalkReloadResponseMultiError []error

ServiceTalkReloadResponseMultiError is an error wrapping multiple validation errors returned by ServiceTalkReloadResponse.ValidateAll() if the designated constraints aren't met.

func (ServiceTalkReloadResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (ServiceTalkReloadResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ServiceTalkReloadResponseValidationError

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

ServiceTalkReloadResponseValidationError is the validation error returned by ServiceTalkReloadResponse.Validate if the designated constraints aren't met.

func (ServiceTalkReloadResponseValidationError) Cause

Cause function returns cause value.

func (ServiceTalkReloadResponseValidationError) Error

Error satisfies the builtin error interface

func (ServiceTalkReloadResponseValidationError) ErrorName

ErrorName returns error name.

func (ServiceTalkReloadResponseValidationError) Field

Field function returns field value.

func (ServiceTalkReloadResponseValidationError) Key

Key function returns key value.

func (ServiceTalkReloadResponseValidationError) Reason

Reason function returns reason value.

type ServiceTalkServiceClient

type ServiceTalkServiceClient interface {
	Service(ctx context.Context, opts ...grpc.CallOption) (ServiceTalkService_ServiceClient, error)
}

ServiceTalkServiceClient is the client API for ServiceTalkService service.

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

type ServiceTalkServiceServer

type ServiceTalkServiceServer interface {
	Service(ServiceTalkService_ServiceServer) error
	// contains filtered or unexported methods
}

ServiceTalkServiceServer is the server API for ServiceTalkService service. All implementations must embed UnimplementedServiceTalkServiceServer for forward compatibility

type ServiceTalkService_ServiceClient

type ServiceTalkService_ServiceClient interface {
	Send(*ServiceRequest) error
	Recv() (*ServiceResponse, error)
	grpc.ClientStream
}

type ServiceTalkService_ServiceServer

type ServiceTalkService_ServiceServer interface {
	Send(*ServiceResponse) error
	Recv() (*ServiceRequest, error)
	grpc.ServerStream
}

type ServicerUserServicerClient

type ServicerUserServicerClient interface {
	Register(ctx context.Context, in *RegisterRequest, opts ...grpc.CallOption) (*RegisterResponse, error)
	Login(ctx context.Context, in *LoginRequest, opts ...grpc.CallOption) (*LoginResponse, error)
	Profile(ctx context.Context, in *ProfileRequest, opts ...grpc.CallOption) (*ProfileResponse, error)
	SetPermissions(ctx context.Context, in *SetPermissionsRequest, opts ...grpc.CallOption) (*Empty, error)
}

ServicerUserServicerClient is the client API for ServicerUserServicer service.

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

type ServicerUserServicerServer

type ServicerUserServicerServer interface {
	Register(context.Context, *RegisterRequest) (*RegisterResponse, error)
	Login(context.Context, *LoginRequest) (*LoginResponse, error)
	Profile(context.Context, *ProfileRequest) (*ProfileResponse, error)
	SetPermissions(context.Context, *SetPermissionsRequest) (*Empty, error)
	// contains filtered or unexported methods
}

ServicerUserServicerServer is the server API for ServicerUserServicer service. All implementations must embed UnimplementedServicerUserServicerServer for forward compatibility

type SetPermissionsRequest added in v0.0.2

type SetPermissionsRequest struct {
	Token  string   `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
	UserId string   `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	ActIds []string `protobuf:"bytes,3,rep,name=act_ids,json=actIds,proto3" json:"act_ids,omitempty"`
	BizIds []string `protobuf:"bytes,4,rep,name=biz_ids,json=bizIds,proto3" json:"biz_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*SetPermissionsRequest) Descriptor deprecated added in v0.0.2

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

Deprecated: Use SetPermissionsRequest.ProtoReflect.Descriptor instead.

func (*SetPermissionsRequest) GetActIds added in v0.0.2

func (x *SetPermissionsRequest) GetActIds() []string

func (*SetPermissionsRequest) GetBizIds added in v0.0.2

func (x *SetPermissionsRequest) GetBizIds() []string

func (*SetPermissionsRequest) GetToken added in v0.0.2

func (x *SetPermissionsRequest) GetToken() string

func (*SetPermissionsRequest) GetUserId added in v0.0.2

func (x *SetPermissionsRequest) GetUserId() string

func (*SetPermissionsRequest) ProtoMessage added in v0.0.2

func (*SetPermissionsRequest) ProtoMessage()

func (*SetPermissionsRequest) ProtoReflect added in v0.0.2

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

func (*SetPermissionsRequest) Reset added in v0.0.2

func (x *SetPermissionsRequest) Reset()

func (*SetPermissionsRequest) String added in v0.0.2

func (x *SetPermissionsRequest) String() string

func (*SetPermissionsRequest) Validate added in v0.0.2

func (m *SetPermissionsRequest) Validate() error

Validate checks the field values on SetPermissionsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SetPermissionsRequest) ValidateAll added in v0.0.2

func (m *SetPermissionsRequest) ValidateAll() error

ValidateAll checks the field values on SetPermissionsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SetPermissionsRequestMultiError, or nil if none found.

type SetPermissionsRequestMultiError added in v0.0.2

type SetPermissionsRequestMultiError []error

SetPermissionsRequestMultiError is an error wrapping multiple validation errors returned by SetPermissionsRequest.ValidateAll() if the designated constraints aren't met.

func (SetPermissionsRequestMultiError) AllErrors added in v0.0.2

func (m SetPermissionsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SetPermissionsRequestMultiError) Error added in v0.0.2

Error returns a concatenation of all the error messages it wraps.

type SetPermissionsRequestValidationError added in v0.0.2

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

SetPermissionsRequestValidationError is the validation error returned by SetPermissionsRequest.Validate if the designated constraints aren't met.

func (SetPermissionsRequestValidationError) Cause added in v0.0.2

Cause function returns cause value.

func (SetPermissionsRequestValidationError) Error added in v0.0.2

Error satisfies the builtin error interface

func (SetPermissionsRequestValidationError) ErrorName added in v0.0.2

ErrorName returns error name.

func (SetPermissionsRequestValidationError) Field added in v0.0.2

Field function returns field value.

func (SetPermissionsRequestValidationError) Key added in v0.0.2

Key function returns key value.

func (SetPermissionsRequestValidationError) Reason added in v0.0.2

Reason function returns reason value.

type TalkClose

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

func (*TalkClose) Descriptor deprecated

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

Deprecated: Use TalkClose.ProtoReflect.Descriptor instead.

func (*TalkClose) ProtoMessage

func (*TalkClose) ProtoMessage()

func (*TalkClose) ProtoReflect

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

func (*TalkClose) Reset

func (x *TalkClose) Reset()

func (*TalkClose) String

func (x *TalkClose) String() string

func (*TalkClose) Validate

func (m *TalkClose) Validate() error

Validate checks the field values on TalkClose with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TalkClose) ValidateAll

func (m *TalkClose) ValidateAll() error

ValidateAll checks the field values on TalkClose with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TalkCloseMultiError, or nil if none found.

type TalkCloseMultiError

type TalkCloseMultiError []error

TalkCloseMultiError is an error wrapping multiple validation errors returned by TalkClose.ValidateAll() if the designated constraints aren't met.

func (TalkCloseMultiError) AllErrors

func (m TalkCloseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TalkCloseMultiError) Error

func (m TalkCloseMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type TalkCloseValidationError

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

TalkCloseValidationError is the validation error returned by TalkClose.Validate if the designated constraints aren't met.

func (TalkCloseValidationError) Cause

func (e TalkCloseValidationError) Cause() error

Cause function returns cause value.

func (TalkCloseValidationError) Error

func (e TalkCloseValidationError) Error() string

Error satisfies the builtin error interface

func (TalkCloseValidationError) ErrorName

func (e TalkCloseValidationError) ErrorName() string

ErrorName returns error name.

func (TalkCloseValidationError) Field

func (e TalkCloseValidationError) Field() string

Field function returns field value.

func (TalkCloseValidationError) Key

Key function returns key value.

func (TalkCloseValidationError) Reason

func (e TalkCloseValidationError) Reason() string

Reason function returns reason value.

type TalkCreateRequest

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

func (*TalkCreateRequest) Descriptor deprecated

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

Deprecated: Use TalkCreateRequest.ProtoReflect.Descriptor instead.

func (*TalkCreateRequest) GetTitle

func (x *TalkCreateRequest) GetTitle() string

func (*TalkCreateRequest) ProtoMessage

func (*TalkCreateRequest) ProtoMessage()

func (*TalkCreateRequest) ProtoReflect

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

func (*TalkCreateRequest) Reset

func (x *TalkCreateRequest) Reset()

func (*TalkCreateRequest) String

func (x *TalkCreateRequest) String() string

func (*TalkCreateRequest) Validate

func (m *TalkCreateRequest) Validate() error

Validate checks the field values on TalkCreateRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TalkCreateRequest) ValidateAll

func (m *TalkCreateRequest) ValidateAll() error

ValidateAll checks the field values on TalkCreateRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TalkCreateRequestMultiError, or nil if none found.

type TalkCreateRequestMultiError

type TalkCreateRequestMultiError []error

TalkCreateRequestMultiError is an error wrapping multiple validation errors returned by TalkCreateRequest.ValidateAll() if the designated constraints aren't met.

func (TalkCreateRequestMultiError) AllErrors

func (m TalkCreateRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TalkCreateRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type TalkCreateRequestValidationError

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

TalkCreateRequestValidationError is the validation error returned by TalkCreateRequest.Validate if the designated constraints aren't met.

func (TalkCreateRequestValidationError) Cause

Cause function returns cause value.

func (TalkCreateRequestValidationError) Error

Error satisfies the builtin error interface

func (TalkCreateRequestValidationError) ErrorName

ErrorName returns error name.

func (TalkCreateRequestValidationError) Field

Field function returns field value.

func (TalkCreateRequestValidationError) Key

Key function returns key value.

func (TalkCreateRequestValidationError) Reason

Reason function returns reason value.

type TalkInfo

type TalkInfo struct {
	TalkId       string     `protobuf:"bytes,1,opt,name=talk_id,json=talkId,proto3" json:"talk_id,omitempty"`
	Status       TalkStatus `protobuf:"varint,2,opt,name=status,proto3,enum=TalkStatus" json:"status,omitempty"`
	Title        string     `protobuf:"bytes,3,opt,name=title,proto3" json:"title,omitempty"`
	StartedAt    uint64     `protobuf:"varint,4,opt,name=started_at,json=startedAt,proto3" json:"started_at,omitempty"`
	FinishedAt   uint64     `protobuf:"varint,5,opt,name=finished_at,json=finishedAt,proto3" json:"finished_at,omitempty"`
	CustomerName string     `protobuf:"bytes,6,opt,name=customer_name,json=customerName,proto3" json:"customer_name,omitempty"`
	// contains filtered or unexported fields
}

func (*TalkInfo) Descriptor deprecated

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

Deprecated: Use TalkInfo.ProtoReflect.Descriptor instead.

func (*TalkInfo) GetCustomerName

func (x *TalkInfo) GetCustomerName() string

func (*TalkInfo) GetFinishedAt

func (x *TalkInfo) GetFinishedAt() uint64

func (*TalkInfo) GetStartedAt

func (x *TalkInfo) GetStartedAt() uint64

func (*TalkInfo) GetStatus

func (x *TalkInfo) GetStatus() TalkStatus

func (*TalkInfo) GetTalkId

func (x *TalkInfo) GetTalkId() string

func (*TalkInfo) GetTitle

func (x *TalkInfo) GetTitle() string

func (*TalkInfo) ProtoMessage

func (*TalkInfo) ProtoMessage()

func (*TalkInfo) ProtoReflect

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

func (*TalkInfo) Reset

func (x *TalkInfo) Reset()

func (*TalkInfo) String

func (x *TalkInfo) String() string

func (*TalkInfo) Validate

func (m *TalkInfo) Validate() error

Validate checks the field values on TalkInfo with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TalkInfo) ValidateAll

func (m *TalkInfo) ValidateAll() error

ValidateAll checks the field values on TalkInfo with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TalkInfoMultiError, or nil if none found.

type TalkInfoMultiError

type TalkInfoMultiError []error

TalkInfoMultiError is an error wrapping multiple validation errors returned by TalkInfo.ValidateAll() if the designated constraints aren't met.

func (TalkInfoMultiError) AllErrors

func (m TalkInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TalkInfoMultiError) Error

func (m TalkInfoMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type TalkInfoValidationError

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

TalkInfoValidationError is the validation error returned by TalkInfo.Validate if the designated constraints aren't met.

func (TalkInfoValidationError) Cause

func (e TalkInfoValidationError) Cause() error

Cause function returns cause value.

func (TalkInfoValidationError) Error

func (e TalkInfoValidationError) Error() string

Error satisfies the builtin error interface

func (TalkInfoValidationError) ErrorName

func (e TalkInfoValidationError) ErrorName() string

ErrorName returns error name.

func (TalkInfoValidationError) Field

func (e TalkInfoValidationError) Field() string

Field function returns field value.

func (TalkInfoValidationError) Key

func (e TalkInfoValidationError) Key() bool

Key function returns key value.

func (TalkInfoValidationError) Reason

func (e TalkInfoValidationError) Reason() string

Reason function returns reason value.

type TalkKickOutMessage

type TalkKickOutMessage struct {
	Code    int32  `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*TalkKickOutMessage) Descriptor deprecated

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

Deprecated: Use TalkKickOutMessage.ProtoReflect.Descriptor instead.

func (*TalkKickOutMessage) GetCode

func (x *TalkKickOutMessage) GetCode() int32

func (*TalkKickOutMessage) GetMessage

func (x *TalkKickOutMessage) GetMessage() string

func (*TalkKickOutMessage) ProtoMessage

func (*TalkKickOutMessage) ProtoMessage()

func (*TalkKickOutMessage) ProtoReflect

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

func (*TalkKickOutMessage) Reset

func (x *TalkKickOutMessage) Reset()

func (*TalkKickOutMessage) String

func (x *TalkKickOutMessage) String() string

func (*TalkKickOutMessage) Validate

func (m *TalkKickOutMessage) Validate() error

Validate checks the field values on TalkKickOutMessage with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TalkKickOutMessage) ValidateAll

func (m *TalkKickOutMessage) ValidateAll() error

ValidateAll checks the field values on TalkKickOutMessage with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TalkKickOutMessageMultiError, or nil if none found.

type TalkKickOutMessageMultiError

type TalkKickOutMessageMultiError []error

TalkKickOutMessageMultiError is an error wrapping multiple validation errors returned by TalkKickOutMessage.ValidateAll() if the designated constraints aren't met.

func (TalkKickOutMessageMultiError) AllErrors

func (m TalkKickOutMessageMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TalkKickOutMessageMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type TalkKickOutMessageValidationError

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

TalkKickOutMessageValidationError is the validation error returned by TalkKickOutMessage.Validate if the designated constraints aren't met.

func (TalkKickOutMessageValidationError) Cause

Cause function returns cause value.

func (TalkKickOutMessageValidationError) Error

Error satisfies the builtin error interface

func (TalkKickOutMessageValidationError) ErrorName

ErrorName returns error name.

func (TalkKickOutMessageValidationError) Field

Field function returns field value.

func (TalkKickOutMessageValidationError) Key

Key function returns key value.

func (TalkKickOutMessageValidationError) Reason

Reason function returns reason value.

type TalkMessage

type TalkMessage struct {
	At              uint64 `protobuf:"varint,1,opt,name=at,proto3" json:"at,omitempty"`
	CustomerMessage bool   `protobuf:"varint,2,opt,name=customer_message,json=customerMessage,proto3" json:"customer_message,omitempty"`
	User            string `protobuf:"bytes,3,opt,name=user,proto3" json:"user,omitempty"`
	// Types that are assignable to Message:
	//	*TalkMessage_Text
	//	*TalkMessage_Image
	Message isTalkMessage_Message `protobuf_oneof:"Message"`
	// contains filtered or unexported fields
}

func (*TalkMessage) Descriptor deprecated

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

Deprecated: Use TalkMessage.ProtoReflect.Descriptor instead.

func (*TalkMessage) GetAt

func (x *TalkMessage) GetAt() uint64

func (*TalkMessage) GetCustomerMessage

func (x *TalkMessage) GetCustomerMessage() bool

func (*TalkMessage) GetImage

func (x *TalkMessage) GetImage() []byte

func (*TalkMessage) GetMessage

func (m *TalkMessage) GetMessage() isTalkMessage_Message

func (*TalkMessage) GetText

func (x *TalkMessage) GetText() string

func (*TalkMessage) GetUser

func (x *TalkMessage) GetUser() string

func (*TalkMessage) ProtoMessage

func (*TalkMessage) ProtoMessage()

func (*TalkMessage) ProtoReflect

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

func (*TalkMessage) Reset

func (x *TalkMessage) Reset()

func (*TalkMessage) String

func (x *TalkMessage) String() string

func (*TalkMessage) Validate

func (m *TalkMessage) Validate() error

Validate checks the field values on TalkMessage with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TalkMessage) ValidateAll

func (m *TalkMessage) ValidateAll() error

ValidateAll checks the field values on TalkMessage with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TalkMessageMultiError, or nil if none found.

type TalkMessageConfirmed

type TalkMessageConfirmed struct {
	SeqId uint64 `protobuf:"varint,1,opt,name=seq_id,json=seqId,proto3" json:"seq_id,omitempty"`
	At    uint64 `protobuf:"varint,2,opt,name=at,proto3" json:"at,omitempty"`
	// contains filtered or unexported fields
}

func (*TalkMessageConfirmed) Descriptor deprecated

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

Deprecated: Use TalkMessageConfirmed.ProtoReflect.Descriptor instead.

func (*TalkMessageConfirmed) GetAt

func (x *TalkMessageConfirmed) GetAt() uint64

func (*TalkMessageConfirmed) GetSeqId

func (x *TalkMessageConfirmed) GetSeqId() uint64

func (*TalkMessageConfirmed) ProtoMessage

func (*TalkMessageConfirmed) ProtoMessage()

func (*TalkMessageConfirmed) ProtoReflect

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

func (*TalkMessageConfirmed) Reset

func (x *TalkMessageConfirmed) Reset()

func (*TalkMessageConfirmed) String

func (x *TalkMessageConfirmed) String() string

func (*TalkMessageConfirmed) Validate

func (m *TalkMessageConfirmed) Validate() error

Validate checks the field values on TalkMessageConfirmed with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TalkMessageConfirmed) ValidateAll

func (m *TalkMessageConfirmed) ValidateAll() error

ValidateAll checks the field values on TalkMessageConfirmed with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TalkMessageConfirmedMultiError, or nil if none found.

type TalkMessageConfirmedMultiError

type TalkMessageConfirmedMultiError []error

TalkMessageConfirmedMultiError is an error wrapping multiple validation errors returned by TalkMessageConfirmed.ValidateAll() if the designated constraints aren't met.

func (TalkMessageConfirmedMultiError) AllErrors

func (m TalkMessageConfirmedMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TalkMessageConfirmedMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type TalkMessageConfirmedValidationError

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

TalkMessageConfirmedValidationError is the validation error returned by TalkMessageConfirmed.Validate if the designated constraints aren't met.

func (TalkMessageConfirmedValidationError) Cause

Cause function returns cause value.

func (TalkMessageConfirmedValidationError) Error

Error satisfies the builtin error interface

func (TalkMessageConfirmedValidationError) ErrorName

ErrorName returns error name.

func (TalkMessageConfirmedValidationError) Field

Field function returns field value.

func (TalkMessageConfirmedValidationError) Key

Key function returns key value.

func (TalkMessageConfirmedValidationError) Reason

Reason function returns reason value.

type TalkMessageMultiError

type TalkMessageMultiError []error

TalkMessageMultiError is an error wrapping multiple validation errors returned by TalkMessage.ValidateAll() if the designated constraints aren't met.

func (TalkMessageMultiError) AllErrors

func (m TalkMessageMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TalkMessageMultiError) Error

func (m TalkMessageMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type TalkMessageValidationError

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

TalkMessageValidationError is the validation error returned by TalkMessage.Validate if the designated constraints aren't met.

func (TalkMessageValidationError) Cause

Cause function returns cause value.

func (TalkMessageValidationError) Error

Error satisfies the builtin error interface

func (TalkMessageValidationError) ErrorName

func (e TalkMessageValidationError) ErrorName() string

ErrorName returns error name.

func (TalkMessageValidationError) Field

Field function returns field value.

func (TalkMessageValidationError) Key

Key function returns key value.

func (TalkMessageValidationError) Reason

Reason function returns reason value.

type TalkMessageW

type TalkMessageW struct {
	SeqId uint64 `protobuf:"varint,1,opt,name=seq_id,json=seqId,proto3" json:"seq_id,omitempty"`
	// Types that are assignable to Message:
	//	*TalkMessageW_Text
	//	*TalkMessageW_Image
	Message isTalkMessageW_Message `protobuf_oneof:"Message"`
	// contains filtered or unexported fields
}

func (*TalkMessageW) Descriptor deprecated

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

Deprecated: Use TalkMessageW.ProtoReflect.Descriptor instead.

func (*TalkMessageW) GetImage

func (x *TalkMessageW) GetImage() []byte

func (*TalkMessageW) GetMessage

func (m *TalkMessageW) GetMessage() isTalkMessageW_Message

func (*TalkMessageW) GetSeqId

func (x *TalkMessageW) GetSeqId() uint64

func (*TalkMessageW) GetText

func (x *TalkMessageW) GetText() string

func (*TalkMessageW) ProtoMessage

func (*TalkMessageW) ProtoMessage()

func (*TalkMessageW) ProtoReflect

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

func (*TalkMessageW) Reset

func (x *TalkMessageW) Reset()

func (*TalkMessageW) String

func (x *TalkMessageW) String() string

func (*TalkMessageW) Validate

func (m *TalkMessageW) Validate() error

Validate checks the field values on TalkMessageW with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TalkMessageW) ValidateAll

func (m *TalkMessageW) ValidateAll() error

ValidateAll checks the field values on TalkMessageW with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TalkMessageWMultiError, or nil if none found.

type TalkMessageWMultiError

type TalkMessageWMultiError []error

TalkMessageWMultiError is an error wrapping multiple validation errors returned by TalkMessageW.ValidateAll() if the designated constraints aren't met.

func (TalkMessageWMultiError) AllErrors

func (m TalkMessageWMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TalkMessageWMultiError) Error

func (m TalkMessageWMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type TalkMessageWValidationError

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

TalkMessageWValidationError is the validation error returned by TalkMessageW.Validate if the designated constraints aren't met.

func (TalkMessageWValidationError) Cause

Cause function returns cause value.

func (TalkMessageWValidationError) Error

Error satisfies the builtin error interface

func (TalkMessageWValidationError) ErrorName

func (e TalkMessageWValidationError) ErrorName() string

ErrorName returns error name.

func (TalkMessageWValidationError) Field

Field function returns field value.

func (TalkMessageWValidationError) Key

Key function returns key value.

func (TalkMessageWValidationError) Reason

Reason function returns reason value.

type TalkMessageW_Image

type TalkMessageW_Image struct {
	Image []byte `protobuf:"bytes,21,opt,name=image,proto3,oneof"`
}

type TalkMessageW_Text

type TalkMessageW_Text struct {
	Text string `protobuf:"bytes,20,opt,name=text,proto3,oneof"`
}

type TalkMessage_Image

type TalkMessage_Image struct {
	Image []byte `protobuf:"bytes,21,opt,name=image,proto3,oneof"`
}

type TalkMessage_Text

type TalkMessage_Text struct {
	Text string `protobuf:"bytes,20,opt,name=text,proto3,oneof"`
}

type TalkMessages

type TalkMessages struct {
	TalkId   string         `protobuf:"bytes,1,opt,name=talk_id,json=talkId,proto3" json:"talk_id,omitempty"`
	Messages []*TalkMessage `protobuf:"bytes,2,rep,name=messages,proto3" json:"messages,omitempty"`
	// contains filtered or unexported fields
}

func (*TalkMessages) Descriptor deprecated

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

Deprecated: Use TalkMessages.ProtoReflect.Descriptor instead.

func (*TalkMessages) GetMessages

func (x *TalkMessages) GetMessages() []*TalkMessage

func (*TalkMessages) GetTalkId

func (x *TalkMessages) GetTalkId() string

func (*TalkMessages) ProtoMessage

func (*TalkMessages) ProtoMessage()

func (*TalkMessages) ProtoReflect

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

func (*TalkMessages) Reset

func (x *TalkMessages) Reset()

func (*TalkMessages) String

func (x *TalkMessages) String() string

func (*TalkMessages) Validate

func (m *TalkMessages) Validate() error

Validate checks the field values on TalkMessages with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TalkMessages) ValidateAll

func (m *TalkMessages) ValidateAll() error

ValidateAll checks the field values on TalkMessages with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TalkMessagesMultiError, or nil if none found.

type TalkMessagesMultiError

type TalkMessagesMultiError []error

TalkMessagesMultiError is an error wrapping multiple validation errors returned by TalkMessages.ValidateAll() if the designated constraints aren't met.

func (TalkMessagesMultiError) AllErrors

func (m TalkMessagesMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TalkMessagesMultiError) Error

func (m TalkMessagesMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type TalkMessagesValidationError

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

TalkMessagesValidationError is the validation error returned by TalkMessages.Validate if the designated constraints aren't met.

func (TalkMessagesValidationError) Cause

Cause function returns cause value.

func (TalkMessagesValidationError) Error

Error satisfies the builtin error interface

func (TalkMessagesValidationError) ErrorName

func (e TalkMessagesValidationError) ErrorName() string

ErrorName returns error name.

func (TalkMessagesValidationError) Field

Field function returns field value.

func (TalkMessagesValidationError) Key

Key function returns key value.

func (TalkMessagesValidationError) Reason

Reason function returns reason value.

type TalkNotifyResponse

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

func (*TalkNotifyResponse) Descriptor deprecated

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

Deprecated: Use TalkNotifyResponse.ProtoReflect.Descriptor instead.

func (*TalkNotifyResponse) GetMsg

func (x *TalkNotifyResponse) GetMsg() string

func (*TalkNotifyResponse) ProtoMessage

func (*TalkNotifyResponse) ProtoMessage()

func (*TalkNotifyResponse) ProtoReflect

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

func (*TalkNotifyResponse) Reset

func (x *TalkNotifyResponse) Reset()

func (*TalkNotifyResponse) String

func (x *TalkNotifyResponse) String() string

func (*TalkNotifyResponse) Validate

func (m *TalkNotifyResponse) Validate() error

Validate checks the field values on TalkNotifyResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TalkNotifyResponse) ValidateAll

func (m *TalkNotifyResponse) ValidateAll() error

ValidateAll checks the field values on TalkNotifyResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TalkNotifyResponseMultiError, or nil if none found.

type TalkNotifyResponseMultiError

type TalkNotifyResponseMultiError []error

TalkNotifyResponseMultiError is an error wrapping multiple validation errors returned by TalkNotifyResponse.ValidateAll() if the designated constraints aren't met.

func (TalkNotifyResponseMultiError) AllErrors

func (m TalkNotifyResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TalkNotifyResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type TalkNotifyResponseValidationError

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

TalkNotifyResponseValidationError is the validation error returned by TalkNotifyResponse.Validate if the designated constraints aren't met.

func (TalkNotifyResponseValidationError) Cause

Cause function returns cause value.

func (TalkNotifyResponseValidationError) Error

Error satisfies the builtin error interface

func (TalkNotifyResponseValidationError) ErrorName

ErrorName returns error name.

func (TalkNotifyResponseValidationError) Field

Field function returns field value.

func (TalkNotifyResponseValidationError) Key

Key function returns key value.

func (TalkNotifyResponseValidationError) Reason

Reason function returns reason value.

type TalkOpenRequest

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

func (*TalkOpenRequest) Descriptor deprecated

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

Deprecated: Use TalkOpenRequest.ProtoReflect.Descriptor instead.

func (*TalkOpenRequest) GetTalkId

func (x *TalkOpenRequest) GetTalkId() string

func (*TalkOpenRequest) ProtoMessage

func (*TalkOpenRequest) ProtoMessage()

func (*TalkOpenRequest) ProtoReflect

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

func (*TalkOpenRequest) Reset

func (x *TalkOpenRequest) Reset()

func (*TalkOpenRequest) String

func (x *TalkOpenRequest) String() string

func (*TalkOpenRequest) Validate

func (m *TalkOpenRequest) Validate() error

Validate checks the field values on TalkOpenRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TalkOpenRequest) ValidateAll

func (m *TalkOpenRequest) ValidateAll() error

ValidateAll checks the field values on TalkOpenRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TalkOpenRequestMultiError, or nil if none found.

type TalkOpenRequestMultiError

type TalkOpenRequestMultiError []error

TalkOpenRequestMultiError is an error wrapping multiple validation errors returned by TalkOpenRequest.ValidateAll() if the designated constraints aren't met.

func (TalkOpenRequestMultiError) AllErrors

func (m TalkOpenRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TalkOpenRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type TalkOpenRequestValidationError

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

TalkOpenRequestValidationError is the validation error returned by TalkOpenRequest.Validate if the designated constraints aren't met.

func (TalkOpenRequestValidationError) Cause

Cause function returns cause value.

func (TalkOpenRequestValidationError) Error

Error satisfies the builtin error interface

func (TalkOpenRequestValidationError) ErrorName

func (e TalkOpenRequestValidationError) ErrorName() string

ErrorName returns error name.

func (TalkOpenRequestValidationError) Field

Field function returns field value.

func (TalkOpenRequestValidationError) Key

Key function returns key value.

func (TalkOpenRequestValidationError) Reason

Reason function returns reason value.

type TalkRequest

type TalkRequest struct {

	// Types that are assignable to Talk:
	//	*TalkRequest_Create
	//	*TalkRequest_Open
	//	*TalkRequest_Message
	//	*TalkRequest_Close
	Talk isTalkRequest_Talk `protobuf_oneof:"Talk"`
	// contains filtered or unexported fields
}

func (*TalkRequest) Descriptor deprecated

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

Deprecated: Use TalkRequest.ProtoReflect.Descriptor instead.

func (*TalkRequest) GetClose

func (x *TalkRequest) GetClose() *TalkClose

func (*TalkRequest) GetCreate

func (x *TalkRequest) GetCreate() *TalkCreateRequest

func (*TalkRequest) GetMessage

func (x *TalkRequest) GetMessage() *TalkMessageW

func (*TalkRequest) GetOpen

func (x *TalkRequest) GetOpen() *TalkOpenRequest

func (*TalkRequest) GetTalk

func (m *TalkRequest) GetTalk() isTalkRequest_Talk

func (*TalkRequest) ProtoMessage

func (*TalkRequest) ProtoMessage()

func (*TalkRequest) ProtoReflect

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

func (*TalkRequest) Reset

func (x *TalkRequest) Reset()

func (*TalkRequest) String

func (x *TalkRequest) String() string

func (*TalkRequest) Validate

func (m *TalkRequest) Validate() error

Validate checks the field values on TalkRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TalkRequest) ValidateAll

func (m *TalkRequest) ValidateAll() error

ValidateAll checks the field values on TalkRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TalkRequestMultiError, or nil if none found.

type TalkRequestMultiError

type TalkRequestMultiError []error

TalkRequestMultiError is an error wrapping multiple validation errors returned by TalkRequest.ValidateAll() if the designated constraints aren't met.

func (TalkRequestMultiError) AllErrors

func (m TalkRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TalkRequestMultiError) Error

func (m TalkRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type TalkRequestValidationError

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

TalkRequestValidationError is the validation error returned by TalkRequest.Validate if the designated constraints aren't met.

func (TalkRequestValidationError) Cause

Cause function returns cause value.

func (TalkRequestValidationError) Error

Error satisfies the builtin error interface

func (TalkRequestValidationError) ErrorName

func (e TalkRequestValidationError) ErrorName() string

ErrorName returns error name.

func (TalkRequestValidationError) Field

Field function returns field value.

func (TalkRequestValidationError) Key

Key function returns key value.

func (TalkRequestValidationError) Reason

Reason function returns reason value.

type TalkRequest_Close

type TalkRequest_Close struct {
	Close *TalkClose `protobuf:"bytes,4,opt,name=close,proto3,oneof"`
}

type TalkRequest_Create

type TalkRequest_Create struct {
	Create *TalkCreateRequest `protobuf:"bytes,1,opt,name=create,proto3,oneof"`
}

type TalkRequest_Message

type TalkRequest_Message struct {
	Message *TalkMessageW `protobuf:"bytes,3,opt,name=message,proto3,oneof"`
}

type TalkRequest_Open

type TalkRequest_Open struct {
	Open *TalkOpenRequest `protobuf:"bytes,2,opt,name=open,proto3,oneof"`
}

type TalkResponse

type TalkResponse struct {

	// Types that are assignable to Talk:
	//	*TalkResponse_KickOut
	//	*TalkResponse_Messages
	//	*TalkResponse_Message
	//	*TalkResponse_MessageConfirmed
	//	*TalkResponse_Close
	//	*TalkResponse_Notify
	Talk isTalkResponse_Talk `protobuf_oneof:"Talk"`
	// contains filtered or unexported fields
}

func (*TalkResponse) Descriptor deprecated

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

Deprecated: Use TalkResponse.ProtoReflect.Descriptor instead.

func (*TalkResponse) GetClose

func (x *TalkResponse) GetClose() *TalkClose

func (*TalkResponse) GetKickOut

func (x *TalkResponse) GetKickOut() *TalkKickOutMessage

func (*TalkResponse) GetMessage

func (x *TalkResponse) GetMessage() *TalkMessage

func (*TalkResponse) GetMessageConfirmed

func (x *TalkResponse) GetMessageConfirmed() *TalkMessageConfirmed

func (*TalkResponse) GetMessages

func (x *TalkResponse) GetMessages() *TalkMessages

func (*TalkResponse) GetNotify

func (x *TalkResponse) GetNotify() *TalkNotifyResponse

func (*TalkResponse) GetTalk

func (m *TalkResponse) GetTalk() isTalkResponse_Talk

func (*TalkResponse) ProtoMessage

func (*TalkResponse) ProtoMessage()

func (*TalkResponse) ProtoReflect

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

func (*TalkResponse) Reset

func (x *TalkResponse) Reset()

func (*TalkResponse) String

func (x *TalkResponse) String() string

func (*TalkResponse) Validate

func (m *TalkResponse) Validate() error

Validate checks the field values on TalkResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TalkResponse) ValidateAll

func (m *TalkResponse) ValidateAll() error

ValidateAll checks the field values on TalkResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TalkResponseMultiError, or nil if none found.

type TalkResponseMultiError

type TalkResponseMultiError []error

TalkResponseMultiError is an error wrapping multiple validation errors returned by TalkResponse.ValidateAll() if the designated constraints aren't met.

func (TalkResponseMultiError) AllErrors

func (m TalkResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TalkResponseMultiError) Error

func (m TalkResponseMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type TalkResponseValidationError

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

TalkResponseValidationError is the validation error returned by TalkResponse.Validate if the designated constraints aren't met.

func (TalkResponseValidationError) Cause

Cause function returns cause value.

func (TalkResponseValidationError) Error

Error satisfies the builtin error interface

func (TalkResponseValidationError) ErrorName

func (e TalkResponseValidationError) ErrorName() string

ErrorName returns error name.

func (TalkResponseValidationError) Field

Field function returns field value.

func (TalkResponseValidationError) Key

Key function returns key value.

func (TalkResponseValidationError) Reason

Reason function returns reason value.

type TalkResponse_Close

type TalkResponse_Close struct {
	Close *TalkClose `protobuf:"bytes,5,opt,name=close,proto3,oneof"`
}

type TalkResponse_KickOut

type TalkResponse_KickOut struct {
	KickOut *TalkKickOutMessage `protobuf:"bytes,1,opt,name=kick_out,json=kickOut,proto3,oneof"`
}

type TalkResponse_Message

type TalkResponse_Message struct {
	Message *TalkMessage `protobuf:"bytes,3,opt,name=message,proto3,oneof"`
}

type TalkResponse_MessageConfirmed

type TalkResponse_MessageConfirmed struct {
	MessageConfirmed *TalkMessageConfirmed `protobuf:"bytes,4,opt,name=message_confirmed,json=messageConfirmed,proto3,oneof"`
}

type TalkResponse_Messages

type TalkResponse_Messages struct {
	Messages *TalkMessages `protobuf:"bytes,2,opt,name=messages,proto3,oneof"`
}

type TalkResponse_Notify

type TalkResponse_Notify struct {
	Notify *TalkNotifyResponse `protobuf:"bytes,6,opt,name=notify,proto3,oneof"`
}

type TalkStatus

type TalkStatus int32
const (
	TalkStatus_TALK_STATUS_UNSPECIFIED TalkStatus = 0
	TalkStatus_TALK_STATUS_OPENED      TalkStatus = 1
	TalkStatus_TALK_STATUS_CLOSED      TalkStatus = 2
)

func (TalkStatus) Descriptor

func (TalkStatus) Descriptor() protoreflect.EnumDescriptor

func (TalkStatus) Enum

func (x TalkStatus) Enum() *TalkStatus

func (TalkStatus) EnumDescriptor deprecated

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

Deprecated: Use TalkStatus.Descriptor instead.

func (TalkStatus) Number

func (x TalkStatus) Number() protoreflect.EnumNumber

func (TalkStatus) String

func (x TalkStatus) String() string

func (TalkStatus) Type

type UnimplementedCustomerTalkServiceServer

type UnimplementedCustomerTalkServiceServer struct {
}

UnimplementedCustomerTalkServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedCustomerTalkServiceServer) QueryTalks

func (UnimplementedCustomerTalkServiceServer) Talk

type UnimplementedCustomerUserServicerServer

type UnimplementedCustomerUserServicerServer struct {
}

UnimplementedCustomerUserServicerServer must be embedded to have forward compatible implementations.

func (UnimplementedCustomerUserServicerServer) CheckToken

func (UnimplementedCustomerUserServicerServer) CreateToken

type UnimplementedServiceTalkServiceServer

type UnimplementedServiceTalkServiceServer struct {
}

UnimplementedServiceTalkServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedServiceTalkServiceServer) Service

type UnimplementedServicerUserServicerServer

type UnimplementedServicerUserServicerServer struct {
}

UnimplementedServicerUserServicerServer must be embedded to have forward compatible implementations.

func (UnimplementedServicerUserServicerServer) Login

func (UnimplementedServicerUserServicerServer) Profile added in v0.0.2

func (UnimplementedServicerUserServicerServer) Register

func (UnimplementedServicerUserServicerServer) SetPermissions added in v0.0.2

type UnsafeCustomerTalkServiceServer

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

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

type UnsafeCustomerUserServicerServer

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

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

type UnsafeServiceTalkServiceServer

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

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

type UnsafeServicerUserServicerServer

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

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

Jump to

Keyboard shortcuts

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