resourcev1

package
v0.0.19 Latest Latest
Warning

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

Go to latest
Published: Aug 3, 2025 License: Apache-2.0 Imports: 19 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_api_account_service_v1_resources_account_event_resource_v1_proto protoreflect.FileDescriptor
View Source
var File_api_account_service_v1_resources_user_auth_resource_v1_proto protoreflect.FileDescriptor
View Source
var File_api_account_service_v1_resources_user_confirm_code_resource_v1_proto protoreflect.FileDescriptor
View Source
var File_api_account_service_v1_resources_user_reg_email_resource_v1_proto protoreflect.FileDescriptor
View Source
var File_api_account_service_v1_resources_user_reg_phone_resource_v1_proto protoreflect.FileDescriptor
View Source
var File_api_account_service_v1_resources_user_resource_v1_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type AccountInfo

type AccountInfo struct {
	CreatedTime  string                          `protobuf:"bytes,2,opt,name=created_time,json=createdTime,proto3" json:"created_time,omitempty"`    // 创建时间
	UserId       uint64                          `protobuf:"varint,5,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`                  // uid
	UserPhone    string                          `protobuf:"bytes,6,opt,name=user_phone,json=userPhone,proto3" json:"user_phone,omitempty"`          // 手机
	UserEmail    string                          `protobuf:"bytes,7,opt,name=user_email,json=userEmail,proto3" json:"user_email,omitempty"`          // 邮箱
	UserNickname string                          `protobuf:"bytes,8,opt,name=user_nickname,json=userNickname,proto3" json:"user_nickname,omitempty"` // 昵称
	UserAvatar   string                          `protobuf:"bytes,9,opt,name=user_avatar,json=userAvatar,proto3" json:"user_avatar,omitempty"`       // 头像
	UserGender   enums.UserGenderEnum_UserGender ``                                                                                                  // 性别;0:INIT,1:MALE,2:FEMALE,3:SECRET
	/* 148-byte string literal not displayed */
	UserStatus enums.UserStatusEnum_UserStatus `` // 状态;0:INIT,1:ENABLE,2:DISABLE,3:WHITELIST,4:BLACKLIST,5:DELETED
	/* 148-byte string literal not displayed */
	RegisterType enums.UserRegisterTypeEnum_UserRegisterType `` // 注册类型;0:INIT,1:EMAIL,2:MOBILE,3:。。。参考ENUM定义
	/* 166-byte string literal not displayed */
	DisableTime uint64 `protobuf:"varint,13,opt,name=disable_time,json=disableTime,proto3" json:"disable_time,omitempty"` // 禁用时间
	// contains filtered or unexported fields
}

func (*AccountInfo) Descriptor deprecated

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

Deprecated: Use AccountInfo.ProtoReflect.Descriptor instead.

func (*AccountInfo) GetCreatedTime

func (x *AccountInfo) GetCreatedTime() string

func (*AccountInfo) GetDisableTime

func (x *AccountInfo) GetDisableTime() uint64

func (*AccountInfo) GetRegisterType

func (*AccountInfo) GetUserAvatar

func (x *AccountInfo) GetUserAvatar() string

func (*AccountInfo) GetUserEmail

func (x *AccountInfo) GetUserEmail() string

func (*AccountInfo) GetUserGender

func (x *AccountInfo) GetUserGender() enums.UserGenderEnum_UserGender

func (*AccountInfo) GetUserId

func (x *AccountInfo) GetUserId() uint64

func (*AccountInfo) GetUserNickname

func (x *AccountInfo) GetUserNickname() string

func (*AccountInfo) GetUserPhone

func (x *AccountInfo) GetUserPhone() string

func (*AccountInfo) GetUserStatus

func (x *AccountInfo) GetUserStatus() enums.UserStatusEnum_UserStatus

func (*AccountInfo) ProtoMessage

func (*AccountInfo) ProtoMessage()

func (*AccountInfo) ProtoReflect

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

func (*AccountInfo) Reset

func (x *AccountInfo) Reset()

func (*AccountInfo) String

func (x *AccountInfo) String() string

func (*AccountInfo) Validate

func (m *AccountInfo) Validate() error

Validate checks the field values on AccountInfo 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 (*AccountInfo) ValidateAll

func (m *AccountInfo) ValidateAll() error

ValidateAll checks the field values on AccountInfo 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 AccountInfoMultiError, or nil if none found.

type AccountInfoMultiError

type AccountInfoMultiError []error

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

func (AccountInfoMultiError) AllErrors

func (m AccountInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AccountInfoMultiError) Error

func (m AccountInfoMultiError) Error() string

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

type AccountInfoValidationError

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

AccountInfoValidationError is the validation error returned by AccountInfo.Validate if the designated constraints aren't met.

func (AccountInfoValidationError) Cause

Cause function returns cause value.

func (AccountInfoValidationError) Error

Error satisfies the builtin error interface

func (AccountInfoValidationError) ErrorName

func (e AccountInfoValidationError) ErrorName() string

ErrorName returns error name.

func (AccountInfoValidationError) Field

Field function returns field value.

func (AccountInfoValidationError) Key

Key function returns key value.

func (AccountInfoValidationError) Reason

Reason function returns reason value.

type ChangeAvatarReq

type ChangeAvatarReq struct {
	UserAvatar string `protobuf:"bytes,2,opt,name=user_avatar,json=userAvatar,proto3" json:"user_avatar,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangeAvatarReq) Descriptor deprecated

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

Deprecated: Use ChangeAvatarReq.ProtoReflect.Descriptor instead.

func (*ChangeAvatarReq) GetUserAvatar

func (x *ChangeAvatarReq) GetUserAvatar() string

func (*ChangeAvatarReq) ProtoMessage

func (*ChangeAvatarReq) ProtoMessage()

func (*ChangeAvatarReq) ProtoReflect

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

func (*ChangeAvatarReq) Reset

func (x *ChangeAvatarReq) Reset()

func (*ChangeAvatarReq) String

func (x *ChangeAvatarReq) String() string

func (*ChangeAvatarReq) Validate

func (m *ChangeAvatarReq) Validate() error

Validate checks the field values on ChangeAvatarReq 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 (*ChangeAvatarReq) ValidateAll

func (m *ChangeAvatarReq) ValidateAll() error

ValidateAll checks the field values on ChangeAvatarReq 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 ChangeAvatarReqMultiError, or nil if none found.

type ChangeAvatarReqMultiError

type ChangeAvatarReqMultiError []error

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

func (ChangeAvatarReqMultiError) AllErrors

func (m ChangeAvatarReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangeAvatarReqMultiError) Error

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

type ChangeAvatarReqValidationError

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

ChangeAvatarReqValidationError is the validation error returned by ChangeAvatarReq.Validate if the designated constraints aren't met.

func (ChangeAvatarReqValidationError) Cause

Cause function returns cause value.

func (ChangeAvatarReqValidationError) Error

Error satisfies the builtin error interface

func (ChangeAvatarReqValidationError) ErrorName

func (e ChangeAvatarReqValidationError) ErrorName() string

ErrorName returns error name.

func (ChangeAvatarReqValidationError) Field

Field function returns field value.

func (ChangeAvatarReqValidationError) Key

Key function returns key value.

func (ChangeAvatarReqValidationError) Reason

Reason function returns reason value.

type ChangeAvatarResp

type ChangeAvatarResp struct {
	Code     int32                 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Reason   string                `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	Message  string                `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	Metadata map[string]string     `` /* 157-byte string literal not displayed */
	Data     *ChangeAvatarRespData `protobuf:"bytes,100,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangeAvatarResp) Descriptor deprecated

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

Deprecated: Use ChangeAvatarResp.ProtoReflect.Descriptor instead.

func (*ChangeAvatarResp) GetCode

func (x *ChangeAvatarResp) GetCode() int32

func (*ChangeAvatarResp) GetData

func (x *ChangeAvatarResp) GetData() *ChangeAvatarRespData

func (*ChangeAvatarResp) GetMessage

func (x *ChangeAvatarResp) GetMessage() string

func (*ChangeAvatarResp) GetMetadata

func (x *ChangeAvatarResp) GetMetadata() map[string]string

func (*ChangeAvatarResp) GetReason

func (x *ChangeAvatarResp) GetReason() string

func (*ChangeAvatarResp) ProtoMessage

func (*ChangeAvatarResp) ProtoMessage()

func (*ChangeAvatarResp) ProtoReflect

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

func (*ChangeAvatarResp) Reset

func (x *ChangeAvatarResp) Reset()

func (*ChangeAvatarResp) String

func (x *ChangeAvatarResp) String() string

func (*ChangeAvatarResp) Validate

func (m *ChangeAvatarResp) Validate() error

Validate checks the field values on ChangeAvatarResp 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 (*ChangeAvatarResp) ValidateAll

func (m *ChangeAvatarResp) ValidateAll() error

ValidateAll checks the field values on ChangeAvatarResp 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 ChangeAvatarRespMultiError, or nil if none found.

type ChangeAvatarRespData

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

func (*ChangeAvatarRespData) Descriptor deprecated

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

Deprecated: Use ChangeAvatarRespData.ProtoReflect.Descriptor instead.

func (*ChangeAvatarRespData) ProtoMessage

func (*ChangeAvatarRespData) ProtoMessage()

func (*ChangeAvatarRespData) ProtoReflect

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

func (*ChangeAvatarRespData) Reset

func (x *ChangeAvatarRespData) Reset()

func (*ChangeAvatarRespData) String

func (x *ChangeAvatarRespData) String() string

func (*ChangeAvatarRespData) Validate

func (m *ChangeAvatarRespData) Validate() error

Validate checks the field values on ChangeAvatarRespData 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 (*ChangeAvatarRespData) ValidateAll

func (m *ChangeAvatarRespData) ValidateAll() error

ValidateAll checks the field values on ChangeAvatarRespData 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 ChangeAvatarRespDataMultiError, or nil if none found.

type ChangeAvatarRespDataMultiError

type ChangeAvatarRespDataMultiError []error

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

func (ChangeAvatarRespDataMultiError) AllErrors

func (m ChangeAvatarRespDataMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangeAvatarRespDataMultiError) Error

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

type ChangeAvatarRespDataValidationError

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

ChangeAvatarRespDataValidationError is the validation error returned by ChangeAvatarRespData.Validate if the designated constraints aren't met.

func (ChangeAvatarRespDataValidationError) Cause

Cause function returns cause value.

func (ChangeAvatarRespDataValidationError) Error

Error satisfies the builtin error interface

func (ChangeAvatarRespDataValidationError) ErrorName

ErrorName returns error name.

func (ChangeAvatarRespDataValidationError) Field

Field function returns field value.

func (ChangeAvatarRespDataValidationError) Key

Key function returns key value.

func (ChangeAvatarRespDataValidationError) Reason

Reason function returns reason value.

type ChangeAvatarRespMultiError

type ChangeAvatarRespMultiError []error

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

func (ChangeAvatarRespMultiError) AllErrors

func (m ChangeAvatarRespMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangeAvatarRespMultiError) Error

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

type ChangeAvatarRespValidationError

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

ChangeAvatarRespValidationError is the validation error returned by ChangeAvatarResp.Validate if the designated constraints aren't met.

func (ChangeAvatarRespValidationError) Cause

Cause function returns cause value.

func (ChangeAvatarRespValidationError) Error

Error satisfies the builtin error interface

func (ChangeAvatarRespValidationError) ErrorName

ErrorName returns error name.

func (ChangeAvatarRespValidationError) Field

Field function returns field value.

func (ChangeAvatarRespValidationError) Key

Key function returns key value.

func (ChangeAvatarRespValidationError) Reason

Reason function returns reason value.

type ChangeEmailReq

type ChangeEmailReq struct {
	UserEmail string `protobuf:"bytes,1,opt,name=user_email,json=userEmail,proto3" json:"user_email,omitempty"`
	Code      string `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangeEmailReq) Descriptor deprecated

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

Deprecated: Use ChangeEmailReq.ProtoReflect.Descriptor instead.

func (*ChangeEmailReq) GetCode

func (x *ChangeEmailReq) GetCode() string

func (*ChangeEmailReq) GetUserEmail

func (x *ChangeEmailReq) GetUserEmail() string

func (*ChangeEmailReq) ProtoMessage

func (*ChangeEmailReq) ProtoMessage()

func (*ChangeEmailReq) ProtoReflect

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

func (*ChangeEmailReq) Reset

func (x *ChangeEmailReq) Reset()

func (*ChangeEmailReq) String

func (x *ChangeEmailReq) String() string

func (*ChangeEmailReq) Validate

func (m *ChangeEmailReq) Validate() error

Validate checks the field values on ChangeEmailReq 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 (*ChangeEmailReq) ValidateAll

func (m *ChangeEmailReq) ValidateAll() error

ValidateAll checks the field values on ChangeEmailReq 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 ChangeEmailReqMultiError, or nil if none found.

type ChangeEmailReqMultiError

type ChangeEmailReqMultiError []error

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

func (ChangeEmailReqMultiError) AllErrors

func (m ChangeEmailReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangeEmailReqMultiError) Error

func (m ChangeEmailReqMultiError) Error() string

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

type ChangeEmailReqValidationError

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

ChangeEmailReqValidationError is the validation error returned by ChangeEmailReq.Validate if the designated constraints aren't met.

func (ChangeEmailReqValidationError) Cause

Cause function returns cause value.

func (ChangeEmailReqValidationError) Error

Error satisfies the builtin error interface

func (ChangeEmailReqValidationError) ErrorName

func (e ChangeEmailReqValidationError) ErrorName() string

ErrorName returns error name.

func (ChangeEmailReqValidationError) Field

Field function returns field value.

func (ChangeEmailReqValidationError) Key

Key function returns key value.

func (ChangeEmailReqValidationError) Reason

Reason function returns reason value.

type ChangeEmailResp

type ChangeEmailResp struct {
	Code     int32                `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Reason   string               `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	Message  string               `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	Metadata map[string]string    `` /* 157-byte string literal not displayed */
	Data     *ChangeEmailRespData `protobuf:"bytes,100,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangeEmailResp) Descriptor deprecated

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

Deprecated: Use ChangeEmailResp.ProtoReflect.Descriptor instead.

func (*ChangeEmailResp) GetCode

func (x *ChangeEmailResp) GetCode() int32

func (*ChangeEmailResp) GetData

func (x *ChangeEmailResp) GetData() *ChangeEmailRespData

func (*ChangeEmailResp) GetMessage

func (x *ChangeEmailResp) GetMessage() string

func (*ChangeEmailResp) GetMetadata

func (x *ChangeEmailResp) GetMetadata() map[string]string

func (*ChangeEmailResp) GetReason

func (x *ChangeEmailResp) GetReason() string

func (*ChangeEmailResp) ProtoMessage

func (*ChangeEmailResp) ProtoMessage()

func (*ChangeEmailResp) ProtoReflect

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

func (*ChangeEmailResp) Reset

func (x *ChangeEmailResp) Reset()

func (*ChangeEmailResp) String

func (x *ChangeEmailResp) String() string

func (*ChangeEmailResp) Validate

func (m *ChangeEmailResp) Validate() error

Validate checks the field values on ChangeEmailResp 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 (*ChangeEmailResp) ValidateAll

func (m *ChangeEmailResp) ValidateAll() error

ValidateAll checks the field values on ChangeEmailResp 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 ChangeEmailRespMultiError, or nil if none found.

type ChangeEmailRespData

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

func (*ChangeEmailRespData) Descriptor deprecated

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

Deprecated: Use ChangeEmailRespData.ProtoReflect.Descriptor instead.

func (*ChangeEmailRespData) ProtoMessage

func (*ChangeEmailRespData) ProtoMessage()

func (*ChangeEmailRespData) ProtoReflect

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

func (*ChangeEmailRespData) Reset

func (x *ChangeEmailRespData) Reset()

func (*ChangeEmailRespData) String

func (x *ChangeEmailRespData) String() string

func (*ChangeEmailRespData) Validate

func (m *ChangeEmailRespData) Validate() error

Validate checks the field values on ChangeEmailRespData 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 (*ChangeEmailRespData) ValidateAll

func (m *ChangeEmailRespData) ValidateAll() error

ValidateAll checks the field values on ChangeEmailRespData 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 ChangeEmailRespDataMultiError, or nil if none found.

type ChangeEmailRespDataMultiError

type ChangeEmailRespDataMultiError []error

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

func (ChangeEmailRespDataMultiError) AllErrors

func (m ChangeEmailRespDataMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangeEmailRespDataMultiError) Error

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

type ChangeEmailRespDataValidationError

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

ChangeEmailRespDataValidationError is the validation error returned by ChangeEmailRespData.Validate if the designated constraints aren't met.

func (ChangeEmailRespDataValidationError) Cause

Cause function returns cause value.

func (ChangeEmailRespDataValidationError) Error

Error satisfies the builtin error interface

func (ChangeEmailRespDataValidationError) ErrorName

ErrorName returns error name.

func (ChangeEmailRespDataValidationError) Field

Field function returns field value.

func (ChangeEmailRespDataValidationError) Key

Key function returns key value.

func (ChangeEmailRespDataValidationError) Reason

Reason function returns reason value.

type ChangeEmailRespMultiError

type ChangeEmailRespMultiError []error

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

func (ChangeEmailRespMultiError) AllErrors

func (m ChangeEmailRespMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangeEmailRespMultiError) Error

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

type ChangeEmailRespValidationError

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

ChangeEmailRespValidationError is the validation error returned by ChangeEmailResp.Validate if the designated constraints aren't met.

func (ChangeEmailRespValidationError) Cause

Cause function returns cause value.

func (ChangeEmailRespValidationError) Error

Error satisfies the builtin error interface

func (ChangeEmailRespValidationError) ErrorName

func (e ChangeEmailRespValidationError) ErrorName() string

ErrorName returns error name.

func (ChangeEmailRespValidationError) Field

Field function returns field value.

func (ChangeEmailRespValidationError) Key

Key function returns key value.

func (ChangeEmailRespValidationError) Reason

Reason function returns reason value.

type ChangeGenderReq

type ChangeGenderReq struct {
	UserGender enums.UserGenderEnum_UserGender `` /* 147-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ChangeGenderReq) Descriptor deprecated

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

Deprecated: Use ChangeGenderReq.ProtoReflect.Descriptor instead.

func (*ChangeGenderReq) GetUserGender

func (x *ChangeGenderReq) GetUserGender() enums.UserGenderEnum_UserGender

func (*ChangeGenderReq) ProtoMessage

func (*ChangeGenderReq) ProtoMessage()

func (*ChangeGenderReq) ProtoReflect

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

func (*ChangeGenderReq) Reset

func (x *ChangeGenderReq) Reset()

func (*ChangeGenderReq) String

func (x *ChangeGenderReq) String() string

func (*ChangeGenderReq) Validate

func (m *ChangeGenderReq) Validate() error

Validate checks the field values on ChangeGenderReq 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 (*ChangeGenderReq) ValidateAll

func (m *ChangeGenderReq) ValidateAll() error

ValidateAll checks the field values on ChangeGenderReq 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 ChangeGenderReqMultiError, or nil if none found.

type ChangeGenderReqMultiError

type ChangeGenderReqMultiError []error

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

func (ChangeGenderReqMultiError) AllErrors

func (m ChangeGenderReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangeGenderReqMultiError) Error

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

type ChangeGenderReqValidationError

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

ChangeGenderReqValidationError is the validation error returned by ChangeGenderReq.Validate if the designated constraints aren't met.

func (ChangeGenderReqValidationError) Cause

Cause function returns cause value.

func (ChangeGenderReqValidationError) Error

Error satisfies the builtin error interface

func (ChangeGenderReqValidationError) ErrorName

func (e ChangeGenderReqValidationError) ErrorName() string

ErrorName returns error name.

func (ChangeGenderReqValidationError) Field

Field function returns field value.

func (ChangeGenderReqValidationError) Key

Key function returns key value.

func (ChangeGenderReqValidationError) Reason

Reason function returns reason value.

type ChangeGenderResp

type ChangeGenderResp struct {
	Code     int32                 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Reason   string                `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	Message  string                `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	Metadata map[string]string     `` /* 157-byte string literal not displayed */
	Data     *ChangeGenderRespData `protobuf:"bytes,100,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangeGenderResp) Descriptor deprecated

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

Deprecated: Use ChangeGenderResp.ProtoReflect.Descriptor instead.

func (*ChangeGenderResp) GetCode

func (x *ChangeGenderResp) GetCode() int32

func (*ChangeGenderResp) GetData

func (x *ChangeGenderResp) GetData() *ChangeGenderRespData

func (*ChangeGenderResp) GetMessage

func (x *ChangeGenderResp) GetMessage() string

func (*ChangeGenderResp) GetMetadata

func (x *ChangeGenderResp) GetMetadata() map[string]string

func (*ChangeGenderResp) GetReason

func (x *ChangeGenderResp) GetReason() string

func (*ChangeGenderResp) ProtoMessage

func (*ChangeGenderResp) ProtoMessage()

func (*ChangeGenderResp) ProtoReflect

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

func (*ChangeGenderResp) Reset

func (x *ChangeGenderResp) Reset()

func (*ChangeGenderResp) String

func (x *ChangeGenderResp) String() string

func (*ChangeGenderResp) Validate

func (m *ChangeGenderResp) Validate() error

Validate checks the field values on ChangeGenderResp 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 (*ChangeGenderResp) ValidateAll

func (m *ChangeGenderResp) ValidateAll() error

ValidateAll checks the field values on ChangeGenderResp 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 ChangeGenderRespMultiError, or nil if none found.

type ChangeGenderRespData

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

func (*ChangeGenderRespData) Descriptor deprecated

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

Deprecated: Use ChangeGenderRespData.ProtoReflect.Descriptor instead.

func (*ChangeGenderRespData) ProtoMessage

func (*ChangeGenderRespData) ProtoMessage()

func (*ChangeGenderRespData) ProtoReflect

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

func (*ChangeGenderRespData) Reset

func (x *ChangeGenderRespData) Reset()

func (*ChangeGenderRespData) String

func (x *ChangeGenderRespData) String() string

func (*ChangeGenderRespData) Validate

func (m *ChangeGenderRespData) Validate() error

Validate checks the field values on ChangeGenderRespData 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 (*ChangeGenderRespData) ValidateAll

func (m *ChangeGenderRespData) ValidateAll() error

ValidateAll checks the field values on ChangeGenderRespData 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 ChangeGenderRespDataMultiError, or nil if none found.

type ChangeGenderRespDataMultiError

type ChangeGenderRespDataMultiError []error

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

func (ChangeGenderRespDataMultiError) AllErrors

func (m ChangeGenderRespDataMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangeGenderRespDataMultiError) Error

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

type ChangeGenderRespDataValidationError

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

ChangeGenderRespDataValidationError is the validation error returned by ChangeGenderRespData.Validate if the designated constraints aren't met.

func (ChangeGenderRespDataValidationError) Cause

Cause function returns cause value.

func (ChangeGenderRespDataValidationError) Error

Error satisfies the builtin error interface

func (ChangeGenderRespDataValidationError) ErrorName

ErrorName returns error name.

func (ChangeGenderRespDataValidationError) Field

Field function returns field value.

func (ChangeGenderRespDataValidationError) Key

Key function returns key value.

func (ChangeGenderRespDataValidationError) Reason

Reason function returns reason value.

type ChangeGenderRespMultiError

type ChangeGenderRespMultiError []error

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

func (ChangeGenderRespMultiError) AllErrors

func (m ChangeGenderRespMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangeGenderRespMultiError) Error

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

type ChangeGenderRespValidationError

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

ChangeGenderRespValidationError is the validation error returned by ChangeGenderResp.Validate if the designated constraints aren't met.

func (ChangeGenderRespValidationError) Cause

Cause function returns cause value.

func (ChangeGenderRespValidationError) Error

Error satisfies the builtin error interface

func (ChangeGenderRespValidationError) ErrorName

ErrorName returns error name.

func (ChangeGenderRespValidationError) Field

Field function returns field value.

func (ChangeGenderRespValidationError) Key

Key function returns key value.

func (ChangeGenderRespValidationError) Reason

Reason function returns reason value.

type ChangeNicknameReq

type ChangeNicknameReq struct {
	UserNickname string `protobuf:"bytes,2,opt,name=user_nickname,json=userNickname,proto3" json:"user_nickname,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangeNicknameReq) Descriptor deprecated

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

Deprecated: Use ChangeNicknameReq.ProtoReflect.Descriptor instead.

func (*ChangeNicknameReq) GetUserNickname

func (x *ChangeNicknameReq) GetUserNickname() string

func (*ChangeNicknameReq) ProtoMessage

func (*ChangeNicknameReq) ProtoMessage()

func (*ChangeNicknameReq) ProtoReflect

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

func (*ChangeNicknameReq) Reset

func (x *ChangeNicknameReq) Reset()

func (*ChangeNicknameReq) String

func (x *ChangeNicknameReq) String() string

func (*ChangeNicknameReq) Validate

func (m *ChangeNicknameReq) Validate() error

Validate checks the field values on ChangeNicknameReq 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 (*ChangeNicknameReq) ValidateAll

func (m *ChangeNicknameReq) ValidateAll() error

ValidateAll checks the field values on ChangeNicknameReq 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 ChangeNicknameReqMultiError, or nil if none found.

type ChangeNicknameReqMultiError

type ChangeNicknameReqMultiError []error

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

func (ChangeNicknameReqMultiError) AllErrors

func (m ChangeNicknameReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangeNicknameReqMultiError) Error

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

type ChangeNicknameReqValidationError

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

ChangeNicknameReqValidationError is the validation error returned by ChangeNicknameReq.Validate if the designated constraints aren't met.

func (ChangeNicknameReqValidationError) Cause

Cause function returns cause value.

func (ChangeNicknameReqValidationError) Error

Error satisfies the builtin error interface

func (ChangeNicknameReqValidationError) ErrorName

ErrorName returns error name.

func (ChangeNicknameReqValidationError) Field

Field function returns field value.

func (ChangeNicknameReqValidationError) Key

Key function returns key value.

func (ChangeNicknameReqValidationError) Reason

Reason function returns reason value.

type ChangeNicknameResp

type ChangeNicknameResp struct {
	Code     int32                   `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Reason   string                  `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	Message  string                  `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	Metadata map[string]string       `` /* 157-byte string literal not displayed */
	Data     *ChangeNicknameRespData `protobuf:"bytes,100,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangeNicknameResp) Descriptor deprecated

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

Deprecated: Use ChangeNicknameResp.ProtoReflect.Descriptor instead.

func (*ChangeNicknameResp) GetCode

func (x *ChangeNicknameResp) GetCode() int32

func (*ChangeNicknameResp) GetData

func (*ChangeNicknameResp) GetMessage

func (x *ChangeNicknameResp) GetMessage() string

func (*ChangeNicknameResp) GetMetadata

func (x *ChangeNicknameResp) GetMetadata() map[string]string

func (*ChangeNicknameResp) GetReason

func (x *ChangeNicknameResp) GetReason() string

func (*ChangeNicknameResp) ProtoMessage

func (*ChangeNicknameResp) ProtoMessage()

func (*ChangeNicknameResp) ProtoReflect

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

func (*ChangeNicknameResp) Reset

func (x *ChangeNicknameResp) Reset()

func (*ChangeNicknameResp) String

func (x *ChangeNicknameResp) String() string

func (*ChangeNicknameResp) Validate

func (m *ChangeNicknameResp) Validate() error

Validate checks the field values on ChangeNicknameResp 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 (*ChangeNicknameResp) ValidateAll

func (m *ChangeNicknameResp) ValidateAll() error

ValidateAll checks the field values on ChangeNicknameResp 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 ChangeNicknameRespMultiError, or nil if none found.

type ChangeNicknameRespData

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

func (*ChangeNicknameRespData) Descriptor deprecated

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

Deprecated: Use ChangeNicknameRespData.ProtoReflect.Descriptor instead.

func (*ChangeNicknameRespData) ProtoMessage

func (*ChangeNicknameRespData) ProtoMessage()

func (*ChangeNicknameRespData) ProtoReflect

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

func (*ChangeNicknameRespData) Reset

func (x *ChangeNicknameRespData) Reset()

func (*ChangeNicknameRespData) String

func (x *ChangeNicknameRespData) String() string

func (*ChangeNicknameRespData) Validate

func (m *ChangeNicknameRespData) Validate() error

Validate checks the field values on ChangeNicknameRespData 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 (*ChangeNicknameRespData) ValidateAll

func (m *ChangeNicknameRespData) ValidateAll() error

ValidateAll checks the field values on ChangeNicknameRespData 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 ChangeNicknameRespDataMultiError, or nil if none found.

type ChangeNicknameRespDataMultiError

type ChangeNicknameRespDataMultiError []error

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

func (ChangeNicknameRespDataMultiError) AllErrors

func (m ChangeNicknameRespDataMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangeNicknameRespDataMultiError) Error

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

type ChangeNicknameRespDataValidationError

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

ChangeNicknameRespDataValidationError is the validation error returned by ChangeNicknameRespData.Validate if the designated constraints aren't met.

func (ChangeNicknameRespDataValidationError) Cause

Cause function returns cause value.

func (ChangeNicknameRespDataValidationError) Error

Error satisfies the builtin error interface

func (ChangeNicknameRespDataValidationError) ErrorName

ErrorName returns error name.

func (ChangeNicknameRespDataValidationError) Field

Field function returns field value.

func (ChangeNicknameRespDataValidationError) Key

Key function returns key value.

func (ChangeNicknameRespDataValidationError) Reason

Reason function returns reason value.

type ChangeNicknameRespMultiError

type ChangeNicknameRespMultiError []error

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

func (ChangeNicknameRespMultiError) AllErrors

func (m ChangeNicknameRespMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangeNicknameRespMultiError) Error

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

type ChangeNicknameRespValidationError

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

ChangeNicknameRespValidationError is the validation error returned by ChangeNicknameResp.Validate if the designated constraints aren't met.

func (ChangeNicknameRespValidationError) Cause

Cause function returns cause value.

func (ChangeNicknameRespValidationError) Error

Error satisfies the builtin error interface

func (ChangeNicknameRespValidationError) ErrorName

ErrorName returns error name.

func (ChangeNicknameRespValidationError) Field

Field function returns field value.

func (ChangeNicknameRespValidationError) Key

Key function returns key value.

func (ChangeNicknameRespValidationError) Reason

Reason function returns reason value.

type ChangePasswordReq

type ChangePasswordReq struct {
	OldPassword        string `protobuf:"bytes,1,opt,name=old_password,json=oldPassword,proto3" json:"old_password,omitempty"`                        // md5(密码)
	NewPassword        string `protobuf:"bytes,2,opt,name=new_password,json=newPassword,proto3" json:"new_password,omitempty"`                        // md5(密码)
	NewPasswordConfirm string `protobuf:"bytes,3,opt,name=new_password_confirm,json=newPasswordConfirm,proto3" json:"new_password_confirm,omitempty"` // md5(密码)
	// contains filtered or unexported fields
}

func (*ChangePasswordReq) Descriptor deprecated

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

Deprecated: Use ChangePasswordReq.ProtoReflect.Descriptor instead.

func (*ChangePasswordReq) GetNewPassword

func (x *ChangePasswordReq) GetNewPassword() string

func (*ChangePasswordReq) GetNewPasswordConfirm

func (x *ChangePasswordReq) GetNewPasswordConfirm() string

func (*ChangePasswordReq) GetOldPassword

func (x *ChangePasswordReq) GetOldPassword() string

func (*ChangePasswordReq) ProtoMessage

func (*ChangePasswordReq) ProtoMessage()

func (*ChangePasswordReq) ProtoReflect

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

func (*ChangePasswordReq) Reset

func (x *ChangePasswordReq) Reset()

func (*ChangePasswordReq) String

func (x *ChangePasswordReq) String() string

func (*ChangePasswordReq) Validate

func (m *ChangePasswordReq) Validate() error

Validate checks the field values on ChangePasswordReq 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 (*ChangePasswordReq) ValidateAll

func (m *ChangePasswordReq) ValidateAll() error

ValidateAll checks the field values on ChangePasswordReq 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 ChangePasswordReqMultiError, or nil if none found.

type ChangePasswordReqMultiError

type ChangePasswordReqMultiError []error

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

func (ChangePasswordReqMultiError) AllErrors

func (m ChangePasswordReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangePasswordReqMultiError) Error

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

type ChangePasswordReqValidationError

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

ChangePasswordReqValidationError is the validation error returned by ChangePasswordReq.Validate if the designated constraints aren't met.

func (ChangePasswordReqValidationError) Cause

Cause function returns cause value.

func (ChangePasswordReqValidationError) Error

Error satisfies the builtin error interface

func (ChangePasswordReqValidationError) ErrorName

ErrorName returns error name.

func (ChangePasswordReqValidationError) Field

Field function returns field value.

func (ChangePasswordReqValidationError) Key

Key function returns key value.

func (ChangePasswordReqValidationError) Reason

Reason function returns reason value.

type ChangePasswordResp

type ChangePasswordResp struct {
	Code     int32                   `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Reason   string                  `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	Message  string                  `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	Metadata map[string]string       `` /* 157-byte string literal not displayed */
	Data     *ChangePasswordRespData `protobuf:"bytes,100,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangePasswordResp) Descriptor deprecated

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

Deprecated: Use ChangePasswordResp.ProtoReflect.Descriptor instead.

func (*ChangePasswordResp) GetCode

func (x *ChangePasswordResp) GetCode() int32

func (*ChangePasswordResp) GetData

func (*ChangePasswordResp) GetMessage

func (x *ChangePasswordResp) GetMessage() string

func (*ChangePasswordResp) GetMetadata

func (x *ChangePasswordResp) GetMetadata() map[string]string

func (*ChangePasswordResp) GetReason

func (x *ChangePasswordResp) GetReason() string

func (*ChangePasswordResp) ProtoMessage

func (*ChangePasswordResp) ProtoMessage()

func (*ChangePasswordResp) ProtoReflect

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

func (*ChangePasswordResp) Reset

func (x *ChangePasswordResp) Reset()

func (*ChangePasswordResp) String

func (x *ChangePasswordResp) String() string

func (*ChangePasswordResp) Validate

func (m *ChangePasswordResp) Validate() error

Validate checks the field values on ChangePasswordResp 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 (*ChangePasswordResp) ValidateAll

func (m *ChangePasswordResp) ValidateAll() error

ValidateAll checks the field values on ChangePasswordResp 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 ChangePasswordRespMultiError, or nil if none found.

type ChangePasswordRespData

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

func (*ChangePasswordRespData) Descriptor deprecated

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

Deprecated: Use ChangePasswordRespData.ProtoReflect.Descriptor instead.

func (*ChangePasswordRespData) ProtoMessage

func (*ChangePasswordRespData) ProtoMessage()

func (*ChangePasswordRespData) ProtoReflect

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

func (*ChangePasswordRespData) Reset

func (x *ChangePasswordRespData) Reset()

func (*ChangePasswordRespData) String

func (x *ChangePasswordRespData) String() string

func (*ChangePasswordRespData) Validate

func (m *ChangePasswordRespData) Validate() error

Validate checks the field values on ChangePasswordRespData 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 (*ChangePasswordRespData) ValidateAll

func (m *ChangePasswordRespData) ValidateAll() error

ValidateAll checks the field values on ChangePasswordRespData 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 ChangePasswordRespDataMultiError, or nil if none found.

type ChangePasswordRespDataMultiError

type ChangePasswordRespDataMultiError []error

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

func (ChangePasswordRespDataMultiError) AllErrors

func (m ChangePasswordRespDataMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangePasswordRespDataMultiError) Error

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

type ChangePasswordRespDataValidationError

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

ChangePasswordRespDataValidationError is the validation error returned by ChangePasswordRespData.Validate if the designated constraints aren't met.

func (ChangePasswordRespDataValidationError) Cause

Cause function returns cause value.

func (ChangePasswordRespDataValidationError) Error

Error satisfies the builtin error interface

func (ChangePasswordRespDataValidationError) ErrorName

ErrorName returns error name.

func (ChangePasswordRespDataValidationError) Field

Field function returns field value.

func (ChangePasswordRespDataValidationError) Key

Key function returns key value.

func (ChangePasswordRespDataValidationError) Reason

Reason function returns reason value.

type ChangePasswordRespMultiError

type ChangePasswordRespMultiError []error

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

func (ChangePasswordRespMultiError) AllErrors

func (m ChangePasswordRespMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangePasswordRespMultiError) Error

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

type ChangePasswordRespValidationError

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

ChangePasswordRespValidationError is the validation error returned by ChangePasswordResp.Validate if the designated constraints aren't met.

func (ChangePasswordRespValidationError) Cause

Cause function returns cause value.

func (ChangePasswordRespValidationError) Error

Error satisfies the builtin error interface

func (ChangePasswordRespValidationError) ErrorName

ErrorName returns error name.

func (ChangePasswordRespValidationError) Field

Field function returns field value.

func (ChangePasswordRespValidationError) Key

Key function returns key value.

func (ChangePasswordRespValidationError) Reason

Reason function returns reason value.

type ChangePhoneReq

type ChangePhoneReq struct {
	Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone,omitempty"`
	Code  string `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangePhoneReq) Descriptor deprecated

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

Deprecated: Use ChangePhoneReq.ProtoReflect.Descriptor instead.

func (*ChangePhoneReq) GetCode

func (x *ChangePhoneReq) GetCode() string

func (*ChangePhoneReq) GetPhone

func (x *ChangePhoneReq) GetPhone() string

func (*ChangePhoneReq) ProtoMessage

func (*ChangePhoneReq) ProtoMessage()

func (*ChangePhoneReq) ProtoReflect

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

func (*ChangePhoneReq) Reset

func (x *ChangePhoneReq) Reset()

func (*ChangePhoneReq) String

func (x *ChangePhoneReq) String() string

func (*ChangePhoneReq) Validate

func (m *ChangePhoneReq) Validate() error

Validate checks the field values on ChangePhoneReq 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 (*ChangePhoneReq) ValidateAll

func (m *ChangePhoneReq) ValidateAll() error

ValidateAll checks the field values on ChangePhoneReq 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 ChangePhoneReqMultiError, or nil if none found.

type ChangePhoneReqMultiError

type ChangePhoneReqMultiError []error

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

func (ChangePhoneReqMultiError) AllErrors

func (m ChangePhoneReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangePhoneReqMultiError) Error

func (m ChangePhoneReqMultiError) Error() string

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

type ChangePhoneReqValidationError

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

ChangePhoneReqValidationError is the validation error returned by ChangePhoneReq.Validate if the designated constraints aren't met.

func (ChangePhoneReqValidationError) Cause

Cause function returns cause value.

func (ChangePhoneReqValidationError) Error

Error satisfies the builtin error interface

func (ChangePhoneReqValidationError) ErrorName

func (e ChangePhoneReqValidationError) ErrorName() string

ErrorName returns error name.

func (ChangePhoneReqValidationError) Field

Field function returns field value.

func (ChangePhoneReqValidationError) Key

Key function returns key value.

func (ChangePhoneReqValidationError) Reason

Reason function returns reason value.

type ChangePhoneResp

type ChangePhoneResp struct {
	Code     int32                `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Reason   string               `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	Message  string               `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	Metadata map[string]string    `` /* 157-byte string literal not displayed */
	Data     *ChangePhoneRespData `protobuf:"bytes,100,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangePhoneResp) Descriptor deprecated

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

Deprecated: Use ChangePhoneResp.ProtoReflect.Descriptor instead.

func (*ChangePhoneResp) GetCode

func (x *ChangePhoneResp) GetCode() int32

func (*ChangePhoneResp) GetData

func (x *ChangePhoneResp) GetData() *ChangePhoneRespData

func (*ChangePhoneResp) GetMessage

func (x *ChangePhoneResp) GetMessage() string

func (*ChangePhoneResp) GetMetadata

func (x *ChangePhoneResp) GetMetadata() map[string]string

func (*ChangePhoneResp) GetReason

func (x *ChangePhoneResp) GetReason() string

func (*ChangePhoneResp) ProtoMessage

func (*ChangePhoneResp) ProtoMessage()

func (*ChangePhoneResp) ProtoReflect

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

func (*ChangePhoneResp) Reset

func (x *ChangePhoneResp) Reset()

func (*ChangePhoneResp) String

func (x *ChangePhoneResp) String() string

func (*ChangePhoneResp) Validate

func (m *ChangePhoneResp) Validate() error

Validate checks the field values on ChangePhoneResp 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 (*ChangePhoneResp) ValidateAll

func (m *ChangePhoneResp) ValidateAll() error

ValidateAll checks the field values on ChangePhoneResp 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 ChangePhoneRespMultiError, or nil if none found.

type ChangePhoneRespData

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

func (*ChangePhoneRespData) Descriptor deprecated

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

Deprecated: Use ChangePhoneRespData.ProtoReflect.Descriptor instead.

func (*ChangePhoneRespData) ProtoMessage

func (*ChangePhoneRespData) ProtoMessage()

func (*ChangePhoneRespData) ProtoReflect

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

func (*ChangePhoneRespData) Reset

func (x *ChangePhoneRespData) Reset()

func (*ChangePhoneRespData) String

func (x *ChangePhoneRespData) String() string

func (*ChangePhoneRespData) Validate

func (m *ChangePhoneRespData) Validate() error

Validate checks the field values on ChangePhoneRespData 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 (*ChangePhoneRespData) ValidateAll

func (m *ChangePhoneRespData) ValidateAll() error

ValidateAll checks the field values on ChangePhoneRespData 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 ChangePhoneRespDataMultiError, or nil if none found.

type ChangePhoneRespDataMultiError

type ChangePhoneRespDataMultiError []error

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

func (ChangePhoneRespDataMultiError) AllErrors

func (m ChangePhoneRespDataMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangePhoneRespDataMultiError) Error

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

type ChangePhoneRespDataValidationError

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

ChangePhoneRespDataValidationError is the validation error returned by ChangePhoneRespData.Validate if the designated constraints aren't met.

func (ChangePhoneRespDataValidationError) Cause

Cause function returns cause value.

func (ChangePhoneRespDataValidationError) Error

Error satisfies the builtin error interface

func (ChangePhoneRespDataValidationError) ErrorName

ErrorName returns error name.

func (ChangePhoneRespDataValidationError) Field

Field function returns field value.

func (ChangePhoneRespDataValidationError) Key

Key function returns key value.

func (ChangePhoneRespDataValidationError) Reason

Reason function returns reason value.

type ChangePhoneRespMultiError

type ChangePhoneRespMultiError []error

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

func (ChangePhoneRespMultiError) AllErrors

func (m ChangePhoneRespMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangePhoneRespMultiError) Error

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

type ChangePhoneRespValidationError

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

ChangePhoneRespValidationError is the validation error returned by ChangePhoneResp.Validate if the designated constraints aren't met.

func (ChangePhoneRespValidationError) Cause

Cause function returns cause value.

func (ChangePhoneRespValidationError) Error

Error satisfies the builtin error interface

func (ChangePhoneRespValidationError) ErrorName

func (e ChangePhoneRespValidationError) ErrorName() string

ErrorName returns error name.

func (ChangePhoneRespValidationError) Field

Field function returns field value.

func (ChangePhoneRespValidationError) Key

Key function returns key value.

func (ChangePhoneRespValidationError) Reason

Reason function returns reason value.

type CreateOrGetUserResp

type CreateOrGetUserResp struct {
	Code     int32                    `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Reason   string                   `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	Message  string                   `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	Metadata map[string]string        `` /* 157-byte string literal not displayed */
	Data     *CreateOrGetUserRespData `protobuf:"bytes,100,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateOrGetUserResp) Descriptor deprecated

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

Deprecated: Use CreateOrGetUserResp.ProtoReflect.Descriptor instead.

func (*CreateOrGetUserResp) GetCode

func (x *CreateOrGetUserResp) GetCode() int32

func (*CreateOrGetUserResp) GetData

func (*CreateOrGetUserResp) GetMessage

func (x *CreateOrGetUserResp) GetMessage() string

func (*CreateOrGetUserResp) GetMetadata

func (x *CreateOrGetUserResp) GetMetadata() map[string]string

func (*CreateOrGetUserResp) GetReason

func (x *CreateOrGetUserResp) GetReason() string

func (*CreateOrGetUserResp) ProtoMessage

func (*CreateOrGetUserResp) ProtoMessage()

func (*CreateOrGetUserResp) ProtoReflect

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

func (*CreateOrGetUserResp) Reset

func (x *CreateOrGetUserResp) Reset()

func (*CreateOrGetUserResp) String

func (x *CreateOrGetUserResp) String() string

func (*CreateOrGetUserResp) Validate

func (m *CreateOrGetUserResp) Validate() error

Validate checks the field values on CreateOrGetUserResp 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 (*CreateOrGetUserResp) ValidateAll

func (m *CreateOrGetUserResp) ValidateAll() error

ValidateAll checks the field values on CreateOrGetUserResp 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 CreateOrGetUserRespMultiError, or nil if none found.

type CreateOrGetUserRespData

type CreateOrGetUserRespData struct {
	Data     *AccountInfo `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	IsCreate bool         `protobuf:"varint,2,opt,name=is_create,json=isCreate,proto3" json:"is_create,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateOrGetUserRespData) Descriptor deprecated

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

Deprecated: Use CreateOrGetUserRespData.ProtoReflect.Descriptor instead.

func (*CreateOrGetUserRespData) GetData

func (x *CreateOrGetUserRespData) GetData() *AccountInfo

func (*CreateOrGetUserRespData) GetIsCreate

func (x *CreateOrGetUserRespData) GetIsCreate() bool

func (*CreateOrGetUserRespData) ProtoMessage

func (*CreateOrGetUserRespData) ProtoMessage()

func (*CreateOrGetUserRespData) ProtoReflect

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

func (*CreateOrGetUserRespData) Reset

func (x *CreateOrGetUserRespData) Reset()

func (*CreateOrGetUserRespData) String

func (x *CreateOrGetUserRespData) String() string

func (*CreateOrGetUserRespData) Validate

func (m *CreateOrGetUserRespData) Validate() error

Validate checks the field values on CreateOrGetUserRespData 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 (*CreateOrGetUserRespData) ValidateAll

func (m *CreateOrGetUserRespData) ValidateAll() error

ValidateAll checks the field values on CreateOrGetUserRespData 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 CreateOrGetUserRespDataMultiError, or nil if none found.

type CreateOrGetUserRespDataMultiError

type CreateOrGetUserRespDataMultiError []error

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

func (CreateOrGetUserRespDataMultiError) AllErrors

func (m CreateOrGetUserRespDataMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateOrGetUserRespDataMultiError) Error

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

type CreateOrGetUserRespDataValidationError

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

CreateOrGetUserRespDataValidationError is the validation error returned by CreateOrGetUserRespData.Validate if the designated constraints aren't met.

func (CreateOrGetUserRespDataValidationError) Cause

Cause function returns cause value.

func (CreateOrGetUserRespDataValidationError) Error

Error satisfies the builtin error interface

func (CreateOrGetUserRespDataValidationError) ErrorName

ErrorName returns error name.

func (CreateOrGetUserRespDataValidationError) Field

Field function returns field value.

func (CreateOrGetUserRespDataValidationError) Key

Key function returns key value.

func (CreateOrGetUserRespDataValidationError) Reason

Reason function returns reason value.

type CreateOrGetUserRespMultiError

type CreateOrGetUserRespMultiError []error

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

func (CreateOrGetUserRespMultiError) AllErrors

func (m CreateOrGetUserRespMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateOrGetUserRespMultiError) Error

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

type CreateOrGetUserRespValidationError

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

CreateOrGetUserRespValidationError is the validation error returned by CreateOrGetUserResp.Validate if the designated constraints aren't met.

func (CreateOrGetUserRespValidationError) Cause

Cause function returns cause value.

func (CreateOrGetUserRespValidationError) Error

Error satisfies the builtin error interface

func (CreateOrGetUserRespValidationError) ErrorName

ErrorName returns error name.

func (CreateOrGetUserRespValidationError) Field

Field function returns field value.

func (CreateOrGetUserRespValidationError) Key

Key function returns key value.

func (CreateOrGetUserRespValidationError) Reason

Reason function returns reason value.

type CreateUserByEmailReq

type CreateUserByEmailReq struct {
	UserEmail    string                          `protobuf:"bytes,2,opt,name=user_email,json=userEmail,proto3" json:"user_email,omitempty"`          // 邮箱
	UserNickname string                          `protobuf:"bytes,3,opt,name=user_nickname,json=userNickname,proto3" json:"user_nickname,omitempty"` // 昵称
	UserAvatar   string                          `protobuf:"bytes,4,opt,name=user_avatar,json=userAvatar,proto3" json:"user_avatar,omitempty"`       // 头像
	UserGender   enums.UserGenderEnum_UserGender ``                                                                                                  // 性别;0:INIT,1:MALE,2:FEMALE,3:SECRET
	/* 147-byte string literal not displayed */
	UserStatus enums.UserStatusEnum_UserStatus `` // 状态;0:INIT,1:ENABLE,2:DISABLE,3:WHITELIST,4:BLACKLIST,5:DELETED
	/* 147-byte string literal not displayed */
	Password string `protobuf:"bytes,7,opt,name=password,proto3" json:"password,omitempty"` // md5(密码)
	// contains filtered or unexported fields
}

func (*CreateUserByEmailReq) Descriptor deprecated

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

Deprecated: Use CreateUserByEmailReq.ProtoReflect.Descriptor instead.

func (*CreateUserByEmailReq) GetPassword

func (x *CreateUserByEmailReq) GetPassword() string

func (*CreateUserByEmailReq) GetUserAvatar

func (x *CreateUserByEmailReq) GetUserAvatar() string

func (*CreateUserByEmailReq) GetUserEmail

func (x *CreateUserByEmailReq) GetUserEmail() string

func (*CreateUserByEmailReq) GetUserGender

func (*CreateUserByEmailReq) GetUserNickname

func (x *CreateUserByEmailReq) GetUserNickname() string

func (*CreateUserByEmailReq) GetUserStatus

func (*CreateUserByEmailReq) ProtoMessage

func (*CreateUserByEmailReq) ProtoMessage()

func (*CreateUserByEmailReq) ProtoReflect

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

func (*CreateUserByEmailReq) Reset

func (x *CreateUserByEmailReq) Reset()

func (*CreateUserByEmailReq) String

func (x *CreateUserByEmailReq) String() string

func (*CreateUserByEmailReq) Validate

func (m *CreateUserByEmailReq) Validate() error

Validate checks the field values on CreateUserByEmailReq 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 (*CreateUserByEmailReq) ValidateAll

func (m *CreateUserByEmailReq) ValidateAll() error

ValidateAll checks the field values on CreateUserByEmailReq 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 CreateUserByEmailReqMultiError, or nil if none found.

type CreateUserByEmailReqMultiError

type CreateUserByEmailReqMultiError []error

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

func (CreateUserByEmailReqMultiError) AllErrors

func (m CreateUserByEmailReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateUserByEmailReqMultiError) Error

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

type CreateUserByEmailReqValidationError

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

CreateUserByEmailReqValidationError is the validation error returned by CreateUserByEmailReq.Validate if the designated constraints aren't met.

func (CreateUserByEmailReqValidationError) Cause

Cause function returns cause value.

func (CreateUserByEmailReqValidationError) Error

Error satisfies the builtin error interface

func (CreateUserByEmailReqValidationError) ErrorName

ErrorName returns error name.

func (CreateUserByEmailReqValidationError) Field

Field function returns field value.

func (CreateUserByEmailReqValidationError) Key

Key function returns key value.

func (CreateUserByEmailReqValidationError) Reason

Reason function returns reason value.

type CreateUserByPhoneReq

type CreateUserByPhoneReq struct {
	UserPhone    string                          `protobuf:"bytes,2,opt,name=user_phone,json=userPhone,proto3" json:"user_phone,omitempty"`          // 电话
	UserNickname string                          `protobuf:"bytes,3,opt,name=user_nickname,json=userNickname,proto3" json:"user_nickname,omitempty"` // 昵称
	UserAvatar   string                          `protobuf:"bytes,4,opt,name=user_avatar,json=userAvatar,proto3" json:"user_avatar,omitempty"`       // 头像
	UserGender   enums.UserGenderEnum_UserGender ``                                                                                                  // 性别;0:INIT,1:MALE,2:FEMALE,3:SECRET
	/* 147-byte string literal not displayed */
	UserStatus enums.UserStatusEnum_UserStatus `` // 状态;0:INIT,1:ENABLE,2:DISABLE,3:WHITELIST,4:BLACKLIST,5:DELETED
	/* 147-byte string literal not displayed */
	Password string `protobuf:"bytes,7,opt,name=password,proto3" json:"password,omitempty"` // md5(密码)
	// contains filtered or unexported fields
}

func (*CreateUserByPhoneReq) Descriptor deprecated

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

Deprecated: Use CreateUserByPhoneReq.ProtoReflect.Descriptor instead.

func (*CreateUserByPhoneReq) GetPassword

func (x *CreateUserByPhoneReq) GetPassword() string

func (*CreateUserByPhoneReq) GetUserAvatar

func (x *CreateUserByPhoneReq) GetUserAvatar() string

func (*CreateUserByPhoneReq) GetUserGender

func (*CreateUserByPhoneReq) GetUserNickname

func (x *CreateUserByPhoneReq) GetUserNickname() string

func (*CreateUserByPhoneReq) GetUserPhone

func (x *CreateUserByPhoneReq) GetUserPhone() string

func (*CreateUserByPhoneReq) GetUserStatus

func (*CreateUserByPhoneReq) ProtoMessage

func (*CreateUserByPhoneReq) ProtoMessage()

func (*CreateUserByPhoneReq) ProtoReflect

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

func (*CreateUserByPhoneReq) Reset

func (x *CreateUserByPhoneReq) Reset()

func (*CreateUserByPhoneReq) String

func (x *CreateUserByPhoneReq) String() string

func (*CreateUserByPhoneReq) Validate

func (m *CreateUserByPhoneReq) Validate() error

Validate checks the field values on CreateUserByPhoneReq 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 (*CreateUserByPhoneReq) ValidateAll

func (m *CreateUserByPhoneReq) ValidateAll() error

ValidateAll checks the field values on CreateUserByPhoneReq 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 CreateUserByPhoneReqMultiError, or nil if none found.

type CreateUserByPhoneReqMultiError

type CreateUserByPhoneReqMultiError []error

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

func (CreateUserByPhoneReqMultiError) AllErrors

func (m CreateUserByPhoneReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateUserByPhoneReqMultiError) Error

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

type CreateUserByPhoneReqValidationError

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

CreateUserByPhoneReqValidationError is the validation error returned by CreateUserByPhoneReq.Validate if the designated constraints aren't met.

func (CreateUserByPhoneReqValidationError) Cause

Cause function returns cause value.

func (CreateUserByPhoneReqValidationError) Error

Error satisfies the builtin error interface

func (CreateUserByPhoneReqValidationError) ErrorName

ErrorName returns error name.

func (CreateUserByPhoneReqValidationError) Field

Field function returns field value.

func (CreateUserByPhoneReqValidationError) Key

Key function returns key value.

func (CreateUserByPhoneReqValidationError) Reason

Reason function returns reason value.

type CreateUserReq

type CreateUserReq struct {
	UserPhone    string                          `protobuf:"bytes,1,opt,name=user_phone,json=userPhone,proto3" json:"user_phone,omitempty"`          // 电话
	UserEmail    string                          `protobuf:"bytes,2,opt,name=user_email,json=userEmail,proto3" json:"user_email,omitempty"`          // 邮箱
	UserNickname string                          `protobuf:"bytes,3,opt,name=user_nickname,json=userNickname,proto3" json:"user_nickname,omitempty"` // 昵称
	UserAvatar   string                          `protobuf:"bytes,4,opt,name=user_avatar,json=userAvatar,proto3" json:"user_avatar,omitempty"`       // 头像
	UserGender   enums.UserGenderEnum_UserGender ``                                                                                                  // 性别;0:INIT,1:MALE,2:FEMALE,3:SECRET
	/* 147-byte string literal not displayed */
	UserStatus enums.UserStatusEnum_UserStatus `` // 状态;0:INIT,1:ENABLE,2:DISABLE,3:WHITELIST,4:BLACKLIST,5:DELETED
	/* 147-byte string literal not displayed */
	Password string `protobuf:"bytes,7,opt,name=password,proto3" json:"password,omitempty"` // md5(密码)
	// contains filtered or unexported fields
}

func (*CreateUserReq) Descriptor deprecated

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

Deprecated: Use CreateUserReq.ProtoReflect.Descriptor instead.

func (*CreateUserReq) GetPassword

func (x *CreateUserReq) GetPassword() string

func (*CreateUserReq) GetUserAvatar

func (x *CreateUserReq) GetUserAvatar() string

func (*CreateUserReq) GetUserEmail

func (x *CreateUserReq) GetUserEmail() string

func (*CreateUserReq) GetUserGender

func (x *CreateUserReq) GetUserGender() enums.UserGenderEnum_UserGender

func (*CreateUserReq) GetUserNickname

func (x *CreateUserReq) GetUserNickname() string

func (*CreateUserReq) GetUserPhone

func (x *CreateUserReq) GetUserPhone() string

func (*CreateUserReq) GetUserStatus

func (x *CreateUserReq) GetUserStatus() enums.UserStatusEnum_UserStatus

func (*CreateUserReq) ProtoMessage

func (*CreateUserReq) ProtoMessage()

func (*CreateUserReq) ProtoReflect

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

func (*CreateUserReq) Reset

func (x *CreateUserReq) Reset()

func (*CreateUserReq) String

func (x *CreateUserReq) String() string

func (*CreateUserReq) Validate

func (m *CreateUserReq) Validate() error

Validate checks the field values on CreateUserReq 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 (*CreateUserReq) ValidateAll

func (m *CreateUserReq) ValidateAll() error

ValidateAll checks the field values on CreateUserReq 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 CreateUserReqMultiError, or nil if none found.

type CreateUserReqMultiError

type CreateUserReqMultiError []error

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

func (CreateUserReqMultiError) AllErrors

func (m CreateUserReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateUserReqMultiError) Error

func (m CreateUserReqMultiError) Error() string

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

type CreateUserReqValidationError

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

CreateUserReqValidationError is the validation error returned by CreateUserReq.Validate if the designated constraints aren't met.

func (CreateUserReqValidationError) Cause

Cause function returns cause value.

func (CreateUserReqValidationError) Error

Error satisfies the builtin error interface

func (CreateUserReqValidationError) ErrorName

func (e CreateUserReqValidationError) ErrorName() string

ErrorName returns error name.

func (CreateUserReqValidationError) Field

Field function returns field value.

func (CreateUserReqValidationError) Key

Key function returns key value.

func (CreateUserReqValidationError) Reason

Reason function returns reason value.

type CreateUserResp

type CreateUserResp struct {
	Code     int32             `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Reason   string            `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	Message  string            `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	Metadata map[string]string `` /* 157-byte string literal not displayed */
	Data     *AccountInfo      `protobuf:"bytes,100,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateUserResp) Descriptor deprecated

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

Deprecated: Use CreateUserResp.ProtoReflect.Descriptor instead.

func (*CreateUserResp) GetCode

func (x *CreateUserResp) GetCode() int32

func (*CreateUserResp) GetData

func (x *CreateUserResp) GetData() *AccountInfo

func (*CreateUserResp) GetMessage

func (x *CreateUserResp) GetMessage() string

func (*CreateUserResp) GetMetadata

func (x *CreateUserResp) GetMetadata() map[string]string

func (*CreateUserResp) GetReason

func (x *CreateUserResp) GetReason() string

func (*CreateUserResp) ProtoMessage

func (*CreateUserResp) ProtoMessage()

func (*CreateUserResp) ProtoReflect

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

func (*CreateUserResp) Reset

func (x *CreateUserResp) Reset()

func (*CreateUserResp) String

func (x *CreateUserResp) String() string

func (*CreateUserResp) Validate

func (m *CreateUserResp) Validate() error

Validate checks the field values on CreateUserResp 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 (*CreateUserResp) ValidateAll

func (m *CreateUserResp) ValidateAll() error

ValidateAll checks the field values on CreateUserResp 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 CreateUserRespMultiError, or nil if none found.

type CreateUserRespMultiError

type CreateUserRespMultiError []error

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

func (CreateUserRespMultiError) AllErrors

func (m CreateUserRespMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateUserRespMultiError) Error

func (m CreateUserRespMultiError) Error() string

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

type CreateUserRespValidationError

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

CreateUserRespValidationError is the validation error returned by CreateUserResp.Validate if the designated constraints aren't met.

func (CreateUserRespValidationError) Cause

Cause function returns cause value.

func (CreateUserRespValidationError) Error

Error satisfies the builtin error interface

func (CreateUserRespValidationError) ErrorName

func (e CreateUserRespValidationError) ErrorName() string

ErrorName returns error name.

func (CreateUserRespValidationError) Field

Field function returns field value.

func (CreateUserRespValidationError) Key

Key function returns key value.

func (CreateUserRespValidationError) Reason

Reason function returns reason value.

type GetUserInfoListReq

type GetUserInfoListReq struct {
	UserIds []uint64 `protobuf:"varint,1,rep,packed,name=user_ids,json=userIds,proto3" json:"user_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*GetUserInfoListReq) Descriptor deprecated

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

Deprecated: Use GetUserInfoListReq.ProtoReflect.Descriptor instead.

func (*GetUserInfoListReq) GetUserIds

func (x *GetUserInfoListReq) GetUserIds() []uint64

func (*GetUserInfoListReq) ProtoMessage

func (*GetUserInfoListReq) ProtoMessage()

func (*GetUserInfoListReq) ProtoReflect

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

func (*GetUserInfoListReq) Reset

func (x *GetUserInfoListReq) Reset()

func (*GetUserInfoListReq) String

func (x *GetUserInfoListReq) String() string

func (*GetUserInfoListReq) Validate

func (m *GetUserInfoListReq) Validate() error

Validate checks the field values on GetUserInfoListReq 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 (*GetUserInfoListReq) ValidateAll

func (m *GetUserInfoListReq) ValidateAll() error

ValidateAll checks the field values on GetUserInfoListReq 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 GetUserInfoListReqMultiError, or nil if none found.

type GetUserInfoListReqMultiError

type GetUserInfoListReqMultiError []error

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

func (GetUserInfoListReqMultiError) AllErrors

func (m GetUserInfoListReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetUserInfoListReqMultiError) Error

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

type GetUserInfoListReqValidationError

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

GetUserInfoListReqValidationError is the validation error returned by GetUserInfoListReq.Validate if the designated constraints aren't met.

func (GetUserInfoListReqValidationError) Cause

Cause function returns cause value.

func (GetUserInfoListReqValidationError) Error

Error satisfies the builtin error interface

func (GetUserInfoListReqValidationError) ErrorName

ErrorName returns error name.

func (GetUserInfoListReqValidationError) Field

Field function returns field value.

func (GetUserInfoListReqValidationError) Key

Key function returns key value.

func (GetUserInfoListReqValidationError) Reason

Reason function returns reason value.

type GetUserInfoListResp

type GetUserInfoListResp struct {
	Code     int32             `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Reason   string            `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	Message  string            `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	Metadata map[string]string `` /* 157-byte string literal not displayed */
	Data     []*AccountInfo    `protobuf:"bytes,100,rep,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*GetUserInfoListResp) Descriptor deprecated

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

Deprecated: Use GetUserInfoListResp.ProtoReflect.Descriptor instead.

func (*GetUserInfoListResp) GetCode

func (x *GetUserInfoListResp) GetCode() int32

func (*GetUserInfoListResp) GetData

func (x *GetUserInfoListResp) GetData() []*AccountInfo

func (*GetUserInfoListResp) GetMessage

func (x *GetUserInfoListResp) GetMessage() string

func (*GetUserInfoListResp) GetMetadata

func (x *GetUserInfoListResp) GetMetadata() map[string]string

func (*GetUserInfoListResp) GetReason

func (x *GetUserInfoListResp) GetReason() string

func (*GetUserInfoListResp) ProtoMessage

func (*GetUserInfoListResp) ProtoMessage()

func (*GetUserInfoListResp) ProtoReflect

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

func (*GetUserInfoListResp) Reset

func (x *GetUserInfoListResp) Reset()

func (*GetUserInfoListResp) String

func (x *GetUserInfoListResp) String() string

func (*GetUserInfoListResp) Validate

func (m *GetUserInfoListResp) Validate() error

Validate checks the field values on GetUserInfoListResp 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 (*GetUserInfoListResp) ValidateAll

func (m *GetUserInfoListResp) ValidateAll() error

ValidateAll checks the field values on GetUserInfoListResp 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 GetUserInfoListRespMultiError, or nil if none found.

type GetUserInfoListRespMultiError

type GetUserInfoListRespMultiError []error

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

func (GetUserInfoListRespMultiError) AllErrors

func (m GetUserInfoListRespMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetUserInfoListRespMultiError) Error

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

type GetUserInfoListRespValidationError

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

GetUserInfoListRespValidationError is the validation error returned by GetUserInfoListResp.Validate if the designated constraints aren't met.

func (GetUserInfoListRespValidationError) Cause

Cause function returns cause value.

func (GetUserInfoListRespValidationError) Error

Error satisfies the builtin error interface

func (GetUserInfoListRespValidationError) ErrorName

ErrorName returns error name.

func (GetUserInfoListRespValidationError) Field

Field function returns field value.

func (GetUserInfoListRespValidationError) Key

Key function returns key value.

func (GetUserInfoListRespValidationError) Reason

Reason function returns reason value.

type GetUserInfoReq

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

func (*GetUserInfoReq) Descriptor deprecated

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

Deprecated: Use GetUserInfoReq.ProtoReflect.Descriptor instead.

func (*GetUserInfoReq) GetUserId

func (x *GetUserInfoReq) GetUserId() uint64

func (*GetUserInfoReq) ProtoMessage

func (*GetUserInfoReq) ProtoMessage()

func (*GetUserInfoReq) ProtoReflect

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

func (*GetUserInfoReq) Reset

func (x *GetUserInfoReq) Reset()

func (*GetUserInfoReq) String

func (x *GetUserInfoReq) String() string

func (*GetUserInfoReq) Validate

func (m *GetUserInfoReq) Validate() error

Validate checks the field values on GetUserInfoReq 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 (*GetUserInfoReq) ValidateAll

func (m *GetUserInfoReq) ValidateAll() error

ValidateAll checks the field values on GetUserInfoReq 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 GetUserInfoReqMultiError, or nil if none found.

type GetUserInfoReqMultiError

type GetUserInfoReqMultiError []error

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

func (GetUserInfoReqMultiError) AllErrors

func (m GetUserInfoReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetUserInfoReqMultiError) Error

func (m GetUserInfoReqMultiError) Error() string

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

type GetUserInfoReqValidationError

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

GetUserInfoReqValidationError is the validation error returned by GetUserInfoReq.Validate if the designated constraints aren't met.

func (GetUserInfoReqValidationError) Cause

Cause function returns cause value.

func (GetUserInfoReqValidationError) Error

Error satisfies the builtin error interface

func (GetUserInfoReqValidationError) ErrorName

func (e GetUserInfoReqValidationError) ErrorName() string

ErrorName returns error name.

func (GetUserInfoReqValidationError) Field

Field function returns field value.

func (GetUserInfoReqValidationError) Key

Key function returns key value.

func (GetUserInfoReqValidationError) Reason

Reason function returns reason value.

type GetUserInfoResp

type GetUserInfoResp struct {
	Code     int32             `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Reason   string            `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	Message  string            `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	Metadata map[string]string `` /* 157-byte string literal not displayed */
	Data     *AccountInfo      `protobuf:"bytes,100,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*GetUserInfoResp) Descriptor deprecated

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

Deprecated: Use GetUserInfoResp.ProtoReflect.Descriptor instead.

func (*GetUserInfoResp) GetCode

func (x *GetUserInfoResp) GetCode() int32

func (*GetUserInfoResp) GetData

func (x *GetUserInfoResp) GetData() *AccountInfo

func (*GetUserInfoResp) GetMessage

func (x *GetUserInfoResp) GetMessage() string

func (*GetUserInfoResp) GetMetadata

func (x *GetUserInfoResp) GetMetadata() map[string]string

func (*GetUserInfoResp) GetReason

func (x *GetUserInfoResp) GetReason() string

func (*GetUserInfoResp) ProtoMessage

func (*GetUserInfoResp) ProtoMessage()

func (*GetUserInfoResp) ProtoReflect

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

func (*GetUserInfoResp) Reset

func (x *GetUserInfoResp) Reset()

func (*GetUserInfoResp) String

func (x *GetUserInfoResp) String() string

func (*GetUserInfoResp) Validate

func (m *GetUserInfoResp) Validate() error

Validate checks the field values on GetUserInfoResp 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 (*GetUserInfoResp) ValidateAll

func (m *GetUserInfoResp) ValidateAll() error

ValidateAll checks the field values on GetUserInfoResp 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 GetUserInfoRespMultiError, or nil if none found.

type GetUserInfoRespMultiError

type GetUserInfoRespMultiError []error

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

func (GetUserInfoRespMultiError) AllErrors

func (m GetUserInfoRespMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetUserInfoRespMultiError) Error

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

type GetUserInfoRespValidationError

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

GetUserInfoRespValidationError is the validation error returned by GetUserInfoResp.Validate if the designated constraints aren't met.

func (GetUserInfoRespValidationError) Cause

Cause function returns cause value.

func (GetUserInfoRespValidationError) Error

Error satisfies the builtin error interface

func (GetUserInfoRespValidationError) ErrorName

func (e GetUserInfoRespValidationError) ErrorName() string

ErrorName returns error name.

func (GetUserInfoRespValidationError) Field

Field function returns field value.

func (GetUserInfoRespValidationError) Key

Key function returns key value.

func (GetUserInfoRespValidationError) Reason

Reason function returns reason value.

type LoginByEmailReq

type LoginByEmailReq struct {
	Email    string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
	Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"` // md5(密码)
	Code     string `protobuf:"bytes,3,opt,name=code,proto3" json:"code,omitempty"`
	// contains filtered or unexported fields
}

func (*LoginByEmailReq) Descriptor deprecated

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

Deprecated: Use LoginByEmailReq.ProtoReflect.Descriptor instead.

func (*LoginByEmailReq) GetCode

func (x *LoginByEmailReq) GetCode() string

func (*LoginByEmailReq) GetEmail

func (x *LoginByEmailReq) GetEmail() string

func (*LoginByEmailReq) GetPassword

func (x *LoginByEmailReq) GetPassword() string

func (*LoginByEmailReq) ProtoMessage

func (*LoginByEmailReq) ProtoMessage()

func (*LoginByEmailReq) ProtoReflect

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

func (*LoginByEmailReq) Reset

func (x *LoginByEmailReq) Reset()

func (*LoginByEmailReq) String

func (x *LoginByEmailReq) String() string

func (*LoginByEmailReq) Validate

func (m *LoginByEmailReq) Validate() error

Validate checks the field values on LoginByEmailReq 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 (*LoginByEmailReq) ValidateAll

func (m *LoginByEmailReq) ValidateAll() error

ValidateAll checks the field values on LoginByEmailReq 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 LoginByEmailReqMultiError, or nil if none found.

type LoginByEmailReqMultiError

type LoginByEmailReqMultiError []error

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

func (LoginByEmailReqMultiError) AllErrors

func (m LoginByEmailReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginByEmailReqMultiError) Error

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

type LoginByEmailReqValidationError

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

LoginByEmailReqValidationError is the validation error returned by LoginByEmailReq.Validate if the designated constraints aren't met.

func (LoginByEmailReqValidationError) Cause

Cause function returns cause value.

func (LoginByEmailReqValidationError) Error

Error satisfies the builtin error interface

func (LoginByEmailReqValidationError) ErrorName

func (e LoginByEmailReqValidationError) ErrorName() string

ErrorName returns error name.

func (LoginByEmailReqValidationError) Field

Field function returns field value.

func (LoginByEmailReqValidationError) Key

Key function returns key value.

func (LoginByEmailReqValidationError) Reason

Reason function returns reason value.

type LoginByOpenApiReq

type LoginByOpenApiReq struct {
	AccessId     string `protobuf:"bytes,1,opt,name=access_id,json=accessId,proto3" json:"access_id,omitempty"`
	AccessSecret string `protobuf:"bytes,2,opt,name=access_secret,json=accessSecret,proto3" json:"access_secret,omitempty"`
	// contains filtered or unexported fields
}

func (*LoginByOpenApiReq) Descriptor deprecated

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

Deprecated: Use LoginByOpenApiReq.ProtoReflect.Descriptor instead.

func (*LoginByOpenApiReq) GetAccessId

func (x *LoginByOpenApiReq) GetAccessId() string

func (*LoginByOpenApiReq) GetAccessSecret

func (x *LoginByOpenApiReq) GetAccessSecret() string

func (*LoginByOpenApiReq) ProtoMessage

func (*LoginByOpenApiReq) ProtoMessage()

func (*LoginByOpenApiReq) ProtoReflect

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

func (*LoginByOpenApiReq) Reset

func (x *LoginByOpenApiReq) Reset()

func (*LoginByOpenApiReq) String

func (x *LoginByOpenApiReq) String() string

func (*LoginByOpenApiReq) Validate

func (m *LoginByOpenApiReq) Validate() error

Validate checks the field values on LoginByOpenApiReq 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 (*LoginByOpenApiReq) ValidateAll

func (m *LoginByOpenApiReq) ValidateAll() error

ValidateAll checks the field values on LoginByOpenApiReq 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 LoginByOpenApiReqMultiError, or nil if none found.

type LoginByOpenApiReqMultiError

type LoginByOpenApiReqMultiError []error

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

func (LoginByOpenApiReqMultiError) AllErrors

func (m LoginByOpenApiReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginByOpenApiReqMultiError) Error

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

type LoginByOpenApiReqValidationError

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

LoginByOpenApiReqValidationError is the validation error returned by LoginByOpenApiReq.Validate if the designated constraints aren't met.

func (LoginByOpenApiReqValidationError) Cause

Cause function returns cause value.

func (LoginByOpenApiReqValidationError) Error

Error satisfies the builtin error interface

func (LoginByOpenApiReqValidationError) ErrorName

ErrorName returns error name.

func (LoginByOpenApiReqValidationError) Field

Field function returns field value.

func (LoginByOpenApiReqValidationError) Key

Key function returns key value.

func (LoginByOpenApiReqValidationError) Reason

Reason function returns reason value.

type LoginByPhoneReq

type LoginByPhoneReq struct {
	Phone    string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone,omitempty"`
	Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"` // md5(密码)
	Code     string `protobuf:"bytes,3,opt,name=code,proto3" json:"code,omitempty"`
	// contains filtered or unexported fields
}

func (*LoginByPhoneReq) Descriptor deprecated

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

Deprecated: Use LoginByPhoneReq.ProtoReflect.Descriptor instead.

func (*LoginByPhoneReq) GetCode

func (x *LoginByPhoneReq) GetCode() string

func (*LoginByPhoneReq) GetPassword

func (x *LoginByPhoneReq) GetPassword() string

func (*LoginByPhoneReq) GetPhone

func (x *LoginByPhoneReq) GetPhone() string

func (*LoginByPhoneReq) ProtoMessage

func (*LoginByPhoneReq) ProtoMessage()

func (*LoginByPhoneReq) ProtoReflect

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

func (*LoginByPhoneReq) Reset

func (x *LoginByPhoneReq) Reset()

func (*LoginByPhoneReq) String

func (x *LoginByPhoneReq) String() string

func (*LoginByPhoneReq) Validate

func (m *LoginByPhoneReq) Validate() error

Validate checks the field values on LoginByPhoneReq 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 (*LoginByPhoneReq) ValidateAll

func (m *LoginByPhoneReq) ValidateAll() error

ValidateAll checks the field values on LoginByPhoneReq 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 LoginByPhoneReqMultiError, or nil if none found.

type LoginByPhoneReqMultiError

type LoginByPhoneReqMultiError []error

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

func (LoginByPhoneReqMultiError) AllErrors

func (m LoginByPhoneReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginByPhoneReqMultiError) Error

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

type LoginByPhoneReqValidationError

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

LoginByPhoneReqValidationError is the validation error returned by LoginByPhoneReq.Validate if the designated constraints aren't met.

func (LoginByPhoneReqValidationError) Cause

Cause function returns cause value.

func (LoginByPhoneReqValidationError) Error

Error satisfies the builtin error interface

func (LoginByPhoneReqValidationError) ErrorName

func (e LoginByPhoneReqValidationError) ErrorName() string

ErrorName returns error name.

func (LoginByPhoneReqValidationError) Field

Field function returns field value.

func (LoginByPhoneReqValidationError) Key

Key function returns key value.

func (LoginByPhoneReqValidationError) Reason

Reason function returns reason value.

type LoginOrSignupByEmailReq

type LoginOrSignupByEmailReq struct {
	Email string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
	Code  string `protobuf:"bytes,5,opt,name=code,proto3" json:"code,omitempty"`
	// contains filtered or unexported fields
}

LoginOrSignupByPhoneReq 邮箱登陆(自动注册)

func (*LoginOrSignupByEmailReq) Descriptor deprecated

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

Deprecated: Use LoginOrSignupByEmailReq.ProtoReflect.Descriptor instead.

func (*LoginOrSignupByEmailReq) GetCode

func (x *LoginOrSignupByEmailReq) GetCode() string

func (*LoginOrSignupByEmailReq) GetEmail

func (x *LoginOrSignupByEmailReq) GetEmail() string

func (*LoginOrSignupByEmailReq) ProtoMessage

func (*LoginOrSignupByEmailReq) ProtoMessage()

func (*LoginOrSignupByEmailReq) ProtoReflect

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

func (*LoginOrSignupByEmailReq) Reset

func (x *LoginOrSignupByEmailReq) Reset()

func (*LoginOrSignupByEmailReq) String

func (x *LoginOrSignupByEmailReq) String() string

func (*LoginOrSignupByEmailReq) Validate

func (m *LoginOrSignupByEmailReq) Validate() error

Validate checks the field values on LoginOrSignupByEmailReq 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 (*LoginOrSignupByEmailReq) ValidateAll

func (m *LoginOrSignupByEmailReq) ValidateAll() error

ValidateAll checks the field values on LoginOrSignupByEmailReq 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 LoginOrSignupByEmailReqMultiError, or nil if none found.

type LoginOrSignupByEmailReqMultiError

type LoginOrSignupByEmailReqMultiError []error

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

func (LoginOrSignupByEmailReqMultiError) AllErrors

func (m LoginOrSignupByEmailReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginOrSignupByEmailReqMultiError) Error

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

type LoginOrSignupByEmailReqValidationError

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

LoginOrSignupByEmailReqValidationError is the validation error returned by LoginOrSignupByEmailReq.Validate if the designated constraints aren't met.

func (LoginOrSignupByEmailReqValidationError) Cause

Cause function returns cause value.

func (LoginOrSignupByEmailReqValidationError) Error

Error satisfies the builtin error interface

func (LoginOrSignupByEmailReqValidationError) ErrorName

ErrorName returns error name.

func (LoginOrSignupByEmailReqValidationError) Field

Field function returns field value.

func (LoginOrSignupByEmailReqValidationError) Key

Key function returns key value.

func (LoginOrSignupByEmailReqValidationError) Reason

Reason function returns reason value.

type LoginOrSignupByPhoneReq

type LoginOrSignupByPhoneReq struct {
	Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone,omitempty"`
	Code  string `protobuf:"bytes,5,opt,name=code,proto3" json:"code,omitempty"`
	// contains filtered or unexported fields
}

LoginOrSignupByPhoneReq 手机登陆(自动注册)

func (*LoginOrSignupByPhoneReq) Descriptor deprecated

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

Deprecated: Use LoginOrSignupByPhoneReq.ProtoReflect.Descriptor instead.

func (*LoginOrSignupByPhoneReq) GetCode

func (x *LoginOrSignupByPhoneReq) GetCode() string

func (*LoginOrSignupByPhoneReq) GetPhone

func (x *LoginOrSignupByPhoneReq) GetPhone() string

func (*LoginOrSignupByPhoneReq) ProtoMessage

func (*LoginOrSignupByPhoneReq) ProtoMessage()

func (*LoginOrSignupByPhoneReq) ProtoReflect

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

func (*LoginOrSignupByPhoneReq) Reset

func (x *LoginOrSignupByPhoneReq) Reset()

func (*LoginOrSignupByPhoneReq) String

func (x *LoginOrSignupByPhoneReq) String() string

func (*LoginOrSignupByPhoneReq) Validate

func (m *LoginOrSignupByPhoneReq) Validate() error

Validate checks the field values on LoginOrSignupByPhoneReq 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 (*LoginOrSignupByPhoneReq) ValidateAll

func (m *LoginOrSignupByPhoneReq) ValidateAll() error

ValidateAll checks the field values on LoginOrSignupByPhoneReq 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 LoginOrSignupByPhoneReqMultiError, or nil if none found.

type LoginOrSignupByPhoneReqMultiError

type LoginOrSignupByPhoneReqMultiError []error

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

func (LoginOrSignupByPhoneReqMultiError) AllErrors

func (m LoginOrSignupByPhoneReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginOrSignupByPhoneReqMultiError) Error

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

type LoginOrSignupByPhoneReqValidationError

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

LoginOrSignupByPhoneReqValidationError is the validation error returned by LoginOrSignupByPhoneReq.Validate if the designated constraints aren't met.

func (LoginOrSignupByPhoneReqValidationError) Cause

Cause function returns cause value.

func (LoginOrSignupByPhoneReqValidationError) Error

Error satisfies the builtin error interface

func (LoginOrSignupByPhoneReqValidationError) ErrorName

ErrorName returns error name.

func (LoginOrSignupByPhoneReqValidationError) Field

Field function returns field value.

func (LoginOrSignupByPhoneReqValidationError) Key

Key function returns key value.

func (LoginOrSignupByPhoneReqValidationError) Reason

Reason function returns reason value.

type LoginResp

type LoginResp struct {
	Code     int32             `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Reason   string            `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	Message  string            `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	Metadata map[string]string `` /* 157-byte string literal not displayed */
	Data     *LoginRespData    `protobuf:"bytes,100,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*LoginResp) Descriptor deprecated

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

Deprecated: Use LoginResp.ProtoReflect.Descriptor instead.

func (*LoginResp) GetCode

func (x *LoginResp) GetCode() int32

func (*LoginResp) GetData

func (x *LoginResp) GetData() *LoginRespData

func (*LoginResp) GetMessage

func (x *LoginResp) GetMessage() string

func (*LoginResp) GetMetadata

func (x *LoginResp) GetMetadata() map[string]string

func (*LoginResp) GetReason

func (x *LoginResp) GetReason() string

func (*LoginResp) ProtoMessage

func (*LoginResp) ProtoMessage()

func (*LoginResp) ProtoReflect

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

func (*LoginResp) Reset

func (x *LoginResp) Reset()

func (*LoginResp) String

func (x *LoginResp) String() string

func (*LoginResp) Validate

func (m *LoginResp) Validate() error

Validate checks the field values on LoginResp 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 (*LoginResp) ValidateAll

func (m *LoginResp) ValidateAll() error

ValidateAll checks the field values on LoginResp 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 LoginRespMultiError, or nil if none found.

type LoginRespData

type LoginRespData struct {
	UserInfo             *UserInfo `protobuf:"bytes,1,opt,name=user_info,json=userInfo,proto3" json:"user_info,omitempty"`
	AccessToken          string    `protobuf:"bytes,10,opt,name=access_token,json=accessToken,proto3" json:"access_token,omitempty"`
	AccessTokenExpiredAt int64     `` // 时间戳,单位:秒
	/* 127-byte string literal not displayed */
	RefreshToken          string `protobuf:"bytes,12,opt,name=refresh_token,json=refreshToken,proto3" json:"refresh_token,omitempty"`
	RefreshTokenExpiredAt int64  `` // 时间戳,单位:秒
	/* 130-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*LoginRespData) Descriptor deprecated

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

Deprecated: Use LoginRespData.ProtoReflect.Descriptor instead.

func (*LoginRespData) GetAccessToken

func (x *LoginRespData) GetAccessToken() string

func (*LoginRespData) GetAccessTokenExpiredAt

func (x *LoginRespData) GetAccessTokenExpiredAt() int64

func (*LoginRespData) GetRefreshToken

func (x *LoginRespData) GetRefreshToken() string

func (*LoginRespData) GetRefreshTokenExpiredAt

func (x *LoginRespData) GetRefreshTokenExpiredAt() int64

func (*LoginRespData) GetUserInfo

func (x *LoginRespData) GetUserInfo() *UserInfo

func (*LoginRespData) ProtoMessage

func (*LoginRespData) ProtoMessage()

func (*LoginRespData) ProtoReflect

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

func (*LoginRespData) Reset

func (x *LoginRespData) Reset()

func (*LoginRespData) String

func (x *LoginRespData) String() string

func (*LoginRespData) Validate

func (m *LoginRespData) Validate() error

Validate checks the field values on LoginRespData 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 (*LoginRespData) ValidateAll

func (m *LoginRespData) ValidateAll() error

ValidateAll checks the field values on LoginRespData 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 LoginRespDataMultiError, or nil if none found.

type LoginRespDataMultiError

type LoginRespDataMultiError []error

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

func (LoginRespDataMultiError) AllErrors

func (m LoginRespDataMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginRespDataMultiError) Error

func (m LoginRespDataMultiError) Error() string

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

type LoginRespDataValidationError

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

LoginRespDataValidationError is the validation error returned by LoginRespData.Validate if the designated constraints aren't met.

func (LoginRespDataValidationError) Cause

Cause function returns cause value.

func (LoginRespDataValidationError) Error

Error satisfies the builtin error interface

func (LoginRespDataValidationError) ErrorName

func (e LoginRespDataValidationError) ErrorName() string

ErrorName returns error name.

func (LoginRespDataValidationError) Field

Field function returns field value.

func (LoginRespDataValidationError) Key

Key function returns key value.

func (LoginRespDataValidationError) Reason

Reason function returns reason value.

type LoginRespMultiError

type LoginRespMultiError []error

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

func (LoginRespMultiError) AllErrors

func (m LoginRespMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginRespMultiError) Error

func (m LoginRespMultiError) Error() string

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

type LoginRespValidationError

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

LoginRespValidationError is the validation error returned by LoginResp.Validate if the designated constraints aren't met.

func (LoginRespValidationError) Cause

func (e LoginRespValidationError) Cause() error

Cause function returns cause value.

func (LoginRespValidationError) Error

func (e LoginRespValidationError) Error() string

Error satisfies the builtin error interface

func (LoginRespValidationError) ErrorName

func (e LoginRespValidationError) ErrorName() string

ErrorName returns error name.

func (LoginRespValidationError) Field

func (e LoginRespValidationError) Field() string

Field function returns field value.

func (LoginRespValidationError) Key

Key function returns key value.

func (LoginRespValidationError) Reason

func (e LoginRespValidationError) Reason() string

Reason function returns reason value.

type PingReq

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

PingReq ...

func (*PingReq) Descriptor deprecated

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

Deprecated: Use PingReq.ProtoReflect.Descriptor instead.

func (*PingReq) GetMessage

func (x *PingReq) GetMessage() string

func (*PingReq) ProtoMessage

func (*PingReq) ProtoMessage()

func (*PingReq) ProtoReflect

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

func (*PingReq) Reset

func (x *PingReq) Reset()

func (*PingReq) String

func (x *PingReq) String() string

func (*PingReq) Validate

func (m *PingReq) Validate() error

Validate checks the field values on PingReq 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 (*PingReq) ValidateAll

func (m *PingReq) ValidateAll() error

ValidateAll checks the field values on PingReq 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 PingReqMultiError, or nil if none found.

type PingReqMultiError

type PingReqMultiError []error

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

func (PingReqMultiError) AllErrors

func (m PingReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PingReqMultiError) Error

func (m PingReqMultiError) Error() string

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

type PingReqValidationError

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

PingReqValidationError is the validation error returned by PingReq.Validate if the designated constraints aren't met.

func (PingReqValidationError) Cause

func (e PingReqValidationError) Cause() error

Cause function returns cause value.

func (PingReqValidationError) Error

func (e PingReqValidationError) Error() string

Error satisfies the builtin error interface

func (PingReqValidationError) ErrorName

func (e PingReqValidationError) ErrorName() string

ErrorName returns error name.

func (PingReqValidationError) Field

func (e PingReqValidationError) Field() string

Field function returns field value.

func (PingReqValidationError) Key

func (e PingReqValidationError) Key() bool

Key function returns key value.

func (PingReqValidationError) Reason

func (e PingReqValidationError) Reason() string

Reason function returns reason value.

type PingResp

type PingResp struct {
	Code     int32             `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Reason   string            `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	Message  string            `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	Metadata map[string]string `` /* 157-byte string literal not displayed */
	Data     *PingRespData     `protobuf:"bytes,100,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

PingResp ...

func (*PingResp) Descriptor deprecated

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

Deprecated: Use PingResp.ProtoReflect.Descriptor instead.

func (*PingResp) GetCode

func (x *PingResp) GetCode() int32

func (*PingResp) GetData

func (x *PingResp) GetData() *PingRespData

func (*PingResp) GetMessage

func (x *PingResp) GetMessage() string

func (*PingResp) GetMetadata

func (x *PingResp) GetMetadata() map[string]string

func (*PingResp) GetReason

func (x *PingResp) GetReason() string

func (*PingResp) ProtoMessage

func (*PingResp) ProtoMessage()

func (*PingResp) ProtoReflect

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

func (*PingResp) Reset

func (x *PingResp) Reset()

func (*PingResp) String

func (x *PingResp) String() string

func (*PingResp) Validate

func (m *PingResp) Validate() error

Validate checks the field values on PingResp 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 (*PingResp) ValidateAll

func (m *PingResp) ValidateAll() error

ValidateAll checks the field values on PingResp 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 PingRespMultiError, or nil if none found.

type PingRespData

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

func (*PingRespData) Descriptor deprecated

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

Deprecated: Use PingRespData.ProtoReflect.Descriptor instead.

func (*PingRespData) GetMessage

func (x *PingRespData) GetMessage() string

func (*PingRespData) ProtoMessage

func (*PingRespData) ProtoMessage()

func (*PingRespData) ProtoReflect

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

func (*PingRespData) Reset

func (x *PingRespData) Reset()

func (*PingRespData) String

func (x *PingRespData) String() string

func (*PingRespData) Validate

func (m *PingRespData) Validate() error

Validate checks the field values on PingRespData 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 (*PingRespData) ValidateAll

func (m *PingRespData) ValidateAll() error

ValidateAll checks the field values on PingRespData 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 PingRespDataMultiError, or nil if none found.

type PingRespDataMultiError

type PingRespDataMultiError []error

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

func (PingRespDataMultiError) AllErrors

func (m PingRespDataMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PingRespDataMultiError) Error

func (m PingRespDataMultiError) Error() string

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

type PingRespDataValidationError

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

PingRespDataValidationError is the validation error returned by PingRespData.Validate if the designated constraints aren't met.

func (PingRespDataValidationError) Cause

Cause function returns cause value.

func (PingRespDataValidationError) Error

Error satisfies the builtin error interface

func (PingRespDataValidationError) ErrorName

func (e PingRespDataValidationError) ErrorName() string

ErrorName returns error name.

func (PingRespDataValidationError) Field

Field function returns field value.

func (PingRespDataValidationError) Key

Key function returns key value.

func (PingRespDataValidationError) Reason

Reason function returns reason value.

type PingRespMultiError

type PingRespMultiError []error

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

func (PingRespMultiError) AllErrors

func (m PingRespMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PingRespMultiError) Error

func (m PingRespMultiError) Error() string

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

type PingRespValidationError

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

PingRespValidationError is the validation error returned by PingResp.Validate if the designated constraints aren't met.

func (PingRespValidationError) Cause

func (e PingRespValidationError) Cause() error

Cause function returns cause value.

func (PingRespValidationError) Error

func (e PingRespValidationError) Error() string

Error satisfies the builtin error interface

func (PingRespValidationError) ErrorName

func (e PingRespValidationError) ErrorName() string

ErrorName returns error name.

func (PingRespValidationError) Field

func (e PingRespValidationError) Field() string

Field function returns field value.

func (PingRespValidationError) Key

func (e PingRespValidationError) Key() bool

Key function returns key value.

func (PingRespValidationError) Reason

func (e PingRespValidationError) Reason() string

Reason function returns reason value.

type RefreshTokenReq

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

func (*RefreshTokenReq) Descriptor deprecated

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

Deprecated: Use RefreshTokenReq.ProtoReflect.Descriptor instead.

func (*RefreshTokenReq) GetRefreshToken

func (x *RefreshTokenReq) GetRefreshToken() string

func (*RefreshTokenReq) ProtoMessage

func (*RefreshTokenReq) ProtoMessage()

func (*RefreshTokenReq) ProtoReflect

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

func (*RefreshTokenReq) Reset

func (x *RefreshTokenReq) Reset()

func (*RefreshTokenReq) String

func (x *RefreshTokenReq) String() string

func (*RefreshTokenReq) Validate

func (m *RefreshTokenReq) Validate() error

Validate checks the field values on RefreshTokenReq 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 (*RefreshTokenReq) ValidateAll

func (m *RefreshTokenReq) ValidateAll() error

ValidateAll checks the field values on RefreshTokenReq 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 RefreshTokenReqMultiError, or nil if none found.

type RefreshTokenReqMultiError

type RefreshTokenReqMultiError []error

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

func (RefreshTokenReqMultiError) AllErrors

func (m RefreshTokenReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RefreshTokenReqMultiError) Error

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

type RefreshTokenReqValidationError

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

RefreshTokenReqValidationError is the validation error returned by RefreshTokenReq.Validate if the designated constraints aren't met.

func (RefreshTokenReqValidationError) Cause

Cause function returns cause value.

func (RefreshTokenReqValidationError) Error

Error satisfies the builtin error interface

func (RefreshTokenReqValidationError) ErrorName

func (e RefreshTokenReqValidationError) ErrorName() string

ErrorName returns error name.

func (RefreshTokenReqValidationError) Field

Field function returns field value.

func (RefreshTokenReqValidationError) Key

Key function returns key value.

func (RefreshTokenReqValidationError) Reason

Reason function returns reason value.

type SendEmailVerifyCodeReq

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

func (*SendEmailVerifyCodeReq) Descriptor deprecated

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

Deprecated: Use SendEmailVerifyCodeReq.ProtoReflect.Descriptor instead.

func (*SendEmailVerifyCodeReq) GetEmail

func (x *SendEmailVerifyCodeReq) GetEmail() string

func (*SendEmailVerifyCodeReq) ProtoMessage

func (*SendEmailVerifyCodeReq) ProtoMessage()

func (*SendEmailVerifyCodeReq) ProtoReflect

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

func (*SendEmailVerifyCodeReq) Reset

func (x *SendEmailVerifyCodeReq) Reset()

func (*SendEmailVerifyCodeReq) String

func (x *SendEmailVerifyCodeReq) String() string

func (*SendEmailVerifyCodeReq) Validate

func (m *SendEmailVerifyCodeReq) Validate() error

Validate checks the field values on SendEmailVerifyCodeReq 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 (*SendEmailVerifyCodeReq) ValidateAll

func (m *SendEmailVerifyCodeReq) ValidateAll() error

ValidateAll checks the field values on SendEmailVerifyCodeReq 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 SendEmailVerifyCodeReqMultiError, or nil if none found.

type SendEmailVerifyCodeReqMultiError

type SendEmailVerifyCodeReqMultiError []error

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

func (SendEmailVerifyCodeReqMultiError) AllErrors

func (m SendEmailVerifyCodeReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SendEmailVerifyCodeReqMultiError) Error

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

type SendEmailVerifyCodeReqValidationError

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

SendEmailVerifyCodeReqValidationError is the validation error returned by SendEmailVerifyCodeReq.Validate if the designated constraints aren't met.

func (SendEmailVerifyCodeReqValidationError) Cause

Cause function returns cause value.

func (SendEmailVerifyCodeReqValidationError) Error

Error satisfies the builtin error interface

func (SendEmailVerifyCodeReqValidationError) ErrorName

ErrorName returns error name.

func (SendEmailVerifyCodeReqValidationError) Field

Field function returns field value.

func (SendEmailVerifyCodeReqValidationError) Key

Key function returns key value.

func (SendEmailVerifyCodeReqValidationError) Reason

Reason function returns reason value.

type SendPhoneVerifyCodeReq

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

func (*SendPhoneVerifyCodeReq) Descriptor deprecated

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

Deprecated: Use SendPhoneVerifyCodeReq.ProtoReflect.Descriptor instead.

func (*SendPhoneVerifyCodeReq) GetPhone

func (x *SendPhoneVerifyCodeReq) GetPhone() string

func (*SendPhoneVerifyCodeReq) ProtoMessage

func (*SendPhoneVerifyCodeReq) ProtoMessage()

func (*SendPhoneVerifyCodeReq) ProtoReflect

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

func (*SendPhoneVerifyCodeReq) Reset

func (x *SendPhoneVerifyCodeReq) Reset()

func (*SendPhoneVerifyCodeReq) String

func (x *SendPhoneVerifyCodeReq) String() string

func (*SendPhoneVerifyCodeReq) Validate

func (m *SendPhoneVerifyCodeReq) Validate() error

Validate checks the field values on SendPhoneVerifyCodeReq 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 (*SendPhoneVerifyCodeReq) ValidateAll

func (m *SendPhoneVerifyCodeReq) ValidateAll() error

ValidateAll checks the field values on SendPhoneVerifyCodeReq 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 SendPhoneVerifyCodeReqMultiError, or nil if none found.

type SendPhoneVerifyCodeReqMultiError

type SendPhoneVerifyCodeReqMultiError []error

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

func (SendPhoneVerifyCodeReqMultiError) AllErrors

func (m SendPhoneVerifyCodeReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SendPhoneVerifyCodeReqMultiError) Error

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

type SendPhoneVerifyCodeReqValidationError

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

SendPhoneVerifyCodeReqValidationError is the validation error returned by SendPhoneVerifyCodeReq.Validate if the designated constraints aren't met.

func (SendPhoneVerifyCodeReqValidationError) Cause

Cause function returns cause value.

func (SendPhoneVerifyCodeReqValidationError) Error

Error satisfies the builtin error interface

func (SendPhoneVerifyCodeReqValidationError) ErrorName

ErrorName returns error name.

func (SendPhoneVerifyCodeReqValidationError) Field

Field function returns field value.

func (SendPhoneVerifyCodeReqValidationError) Key

Key function returns key value.

func (SendPhoneVerifyCodeReqValidationError) Reason

Reason function returns reason value.

type SendVerifyCodeResp

type SendVerifyCodeResp struct {
	Code     int32                   `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Reason   string                  `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	Message  string                  `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	Metadata map[string]string       `` /* 157-byte string literal not displayed */
	Data     *SendVerifyCodeRespData `protobuf:"bytes,100,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*SendVerifyCodeResp) Descriptor deprecated

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

Deprecated: Use SendVerifyCodeResp.ProtoReflect.Descriptor instead.

func (*SendVerifyCodeResp) GetCode

func (x *SendVerifyCodeResp) GetCode() int32

func (*SendVerifyCodeResp) GetData

func (*SendVerifyCodeResp) GetMessage

func (x *SendVerifyCodeResp) GetMessage() string

func (*SendVerifyCodeResp) GetMetadata

func (x *SendVerifyCodeResp) GetMetadata() map[string]string

func (*SendVerifyCodeResp) GetReason

func (x *SendVerifyCodeResp) GetReason() string

func (*SendVerifyCodeResp) ProtoMessage

func (*SendVerifyCodeResp) ProtoMessage()

func (*SendVerifyCodeResp) ProtoReflect

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

func (*SendVerifyCodeResp) Reset

func (x *SendVerifyCodeResp) Reset()

func (*SendVerifyCodeResp) String

func (x *SendVerifyCodeResp) String() string

func (*SendVerifyCodeResp) Validate

func (m *SendVerifyCodeResp) Validate() error

Validate checks the field values on SendVerifyCodeResp 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 (*SendVerifyCodeResp) ValidateAll

func (m *SendVerifyCodeResp) ValidateAll() error

ValidateAll checks the field values on SendVerifyCodeResp 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 SendVerifyCodeRespMultiError, or nil if none found.

type SendVerifyCodeRespData

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

func (*SendVerifyCodeRespData) Descriptor deprecated

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

Deprecated: Use SendVerifyCodeRespData.ProtoReflect.Descriptor instead.

func (*SendVerifyCodeRespData) GetCode

func (x *SendVerifyCodeRespData) GetCode() string

func (*SendVerifyCodeRespData) ProtoMessage

func (*SendVerifyCodeRespData) ProtoMessage()

func (*SendVerifyCodeRespData) ProtoReflect

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

func (*SendVerifyCodeRespData) Reset

func (x *SendVerifyCodeRespData) Reset()

func (*SendVerifyCodeRespData) String

func (x *SendVerifyCodeRespData) String() string

func (*SendVerifyCodeRespData) Validate

func (m *SendVerifyCodeRespData) Validate() error

Validate checks the field values on SendVerifyCodeRespData 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 (*SendVerifyCodeRespData) ValidateAll

func (m *SendVerifyCodeRespData) ValidateAll() error

ValidateAll checks the field values on SendVerifyCodeRespData 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 SendVerifyCodeRespDataMultiError, or nil if none found.

type SendVerifyCodeRespDataMultiError

type SendVerifyCodeRespDataMultiError []error

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

func (SendVerifyCodeRespDataMultiError) AllErrors

func (m SendVerifyCodeRespDataMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SendVerifyCodeRespDataMultiError) Error

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

type SendVerifyCodeRespDataValidationError

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

SendVerifyCodeRespDataValidationError is the validation error returned by SendVerifyCodeRespData.Validate if the designated constraints aren't met.

func (SendVerifyCodeRespDataValidationError) Cause

Cause function returns cause value.

func (SendVerifyCodeRespDataValidationError) Error

Error satisfies the builtin error interface

func (SendVerifyCodeRespDataValidationError) ErrorName

ErrorName returns error name.

func (SendVerifyCodeRespDataValidationError) Field

Field function returns field value.

func (SendVerifyCodeRespDataValidationError) Key

Key function returns key value.

func (SendVerifyCodeRespDataValidationError) Reason

Reason function returns reason value.

type SendVerifyCodeRespMultiError

type SendVerifyCodeRespMultiError []error

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

func (SendVerifyCodeRespMultiError) AllErrors

func (m SendVerifyCodeRespMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SendVerifyCodeRespMultiError) Error

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

type SendVerifyCodeRespValidationError

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

SendVerifyCodeRespValidationError is the validation error returned by SendVerifyCodeResp.Validate if the designated constraints aren't met.

func (SendVerifyCodeRespValidationError) Cause

Cause function returns cause value.

func (SendVerifyCodeRespValidationError) Error

Error satisfies the builtin error interface

func (SendVerifyCodeRespValidationError) ErrorName

ErrorName returns error name.

func (SendVerifyCodeRespValidationError) Field

Field function returns field value.

func (SendVerifyCodeRespValidationError) Key

Key function returns key value.

func (SendVerifyCodeRespValidationError) Reason

Reason function returns reason value.

type SignupByEmailReq

type SignupByEmailReq struct {
	Email           string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
	Password        string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`                                      // md5(密码)
	PasswordConfirm string `protobuf:"bytes,3,opt,name=password_confirm,json=passwordConfirm,proto3" json:"password_confirm,omitempty"` // md5(密码)
	Code            string `protobuf:"bytes,4,opt,name=code,proto3" json:"code,omitempty"`
	// contains filtered or unexported fields
}

func (*SignupByEmailReq) Descriptor deprecated

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

Deprecated: Use SignupByEmailReq.ProtoReflect.Descriptor instead.

func (*SignupByEmailReq) GetCode

func (x *SignupByEmailReq) GetCode() string

func (*SignupByEmailReq) GetEmail

func (x *SignupByEmailReq) GetEmail() string

func (*SignupByEmailReq) GetPassword

func (x *SignupByEmailReq) GetPassword() string

func (*SignupByEmailReq) GetPasswordConfirm

func (x *SignupByEmailReq) GetPasswordConfirm() string

func (*SignupByEmailReq) ProtoMessage

func (*SignupByEmailReq) ProtoMessage()

func (*SignupByEmailReq) ProtoReflect

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

func (*SignupByEmailReq) Reset

func (x *SignupByEmailReq) Reset()

func (*SignupByEmailReq) String

func (x *SignupByEmailReq) String() string

func (*SignupByEmailReq) Validate

func (m *SignupByEmailReq) Validate() error

Validate checks the field values on SignupByEmailReq 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 (*SignupByEmailReq) ValidateAll

func (m *SignupByEmailReq) ValidateAll() error

ValidateAll checks the field values on SignupByEmailReq 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 SignupByEmailReqMultiError, or nil if none found.

type SignupByEmailReqMultiError

type SignupByEmailReqMultiError []error

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

func (SignupByEmailReqMultiError) AllErrors

func (m SignupByEmailReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SignupByEmailReqMultiError) Error

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

type SignupByEmailReqValidationError

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

SignupByEmailReqValidationError is the validation error returned by SignupByEmailReq.Validate if the designated constraints aren't met.

func (SignupByEmailReqValidationError) Cause

Cause function returns cause value.

func (SignupByEmailReqValidationError) Error

Error satisfies the builtin error interface

func (SignupByEmailReqValidationError) ErrorName

ErrorName returns error name.

func (SignupByEmailReqValidationError) Field

Field function returns field value.

func (SignupByEmailReqValidationError) Key

Key function returns key value.

func (SignupByEmailReqValidationError) Reason

Reason function returns reason value.

type SignupByPhoneReq

type SignupByPhoneReq struct {
	Phone           string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone,omitempty"`
	Password        string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`                                      // md5(密码)
	PasswordConfirm string `protobuf:"bytes,3,opt,name=password_confirm,json=passwordConfirm,proto3" json:"password_confirm,omitempty"` // md5(密码)
	Code            string `protobuf:"bytes,4,opt,name=code,proto3" json:"code,omitempty"`
	// contains filtered or unexported fields
}

func (*SignupByPhoneReq) Descriptor deprecated

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

Deprecated: Use SignupByPhoneReq.ProtoReflect.Descriptor instead.

func (*SignupByPhoneReq) GetCode

func (x *SignupByPhoneReq) GetCode() string

func (*SignupByPhoneReq) GetPassword

func (x *SignupByPhoneReq) GetPassword() string

func (*SignupByPhoneReq) GetPasswordConfirm

func (x *SignupByPhoneReq) GetPasswordConfirm() string

func (*SignupByPhoneReq) GetPhone

func (x *SignupByPhoneReq) GetPhone() string

func (*SignupByPhoneReq) ProtoMessage

func (*SignupByPhoneReq) ProtoMessage()

func (*SignupByPhoneReq) ProtoReflect

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

func (*SignupByPhoneReq) Reset

func (x *SignupByPhoneReq) Reset()

func (*SignupByPhoneReq) String

func (x *SignupByPhoneReq) String() string

func (*SignupByPhoneReq) Validate

func (m *SignupByPhoneReq) Validate() error

Validate checks the field values on SignupByPhoneReq 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 (*SignupByPhoneReq) ValidateAll

func (m *SignupByPhoneReq) ValidateAll() error

ValidateAll checks the field values on SignupByPhoneReq 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 SignupByPhoneReqMultiError, or nil if none found.

type SignupByPhoneReqMultiError

type SignupByPhoneReqMultiError []error

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

func (SignupByPhoneReqMultiError) AllErrors

func (m SignupByPhoneReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SignupByPhoneReqMultiError) Error

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

type SignupByPhoneReqValidationError

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

SignupByPhoneReqValidationError is the validation error returned by SignupByPhoneReq.Validate if the designated constraints aren't met.

func (SignupByPhoneReqValidationError) Cause

Cause function returns cause value.

func (SignupByPhoneReqValidationError) Error

Error satisfies the builtin error interface

func (SignupByPhoneReqValidationError) ErrorName

ErrorName returns error name.

func (SignupByPhoneReqValidationError) Field

Field function returns field value.

func (SignupByPhoneReqValidationError) Key

Key function returns key value.

func (SignupByPhoneReqValidationError) Reason

Reason function returns reason value.

type StopSendEmailCodeEventReq

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

func (*StopSendEmailCodeEventReq) Descriptor deprecated

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

Deprecated: Use StopSendEmailCodeEventReq.ProtoReflect.Descriptor instead.

func (*StopSendEmailCodeEventReq) ProtoMessage

func (*StopSendEmailCodeEventReq) ProtoMessage()

func (*StopSendEmailCodeEventReq) ProtoReflect

func (*StopSendEmailCodeEventReq) Reset

func (x *StopSendEmailCodeEventReq) Reset()

func (*StopSendEmailCodeEventReq) String

func (x *StopSendEmailCodeEventReq) String() string

func (*StopSendEmailCodeEventReq) Validate

func (m *StopSendEmailCodeEventReq) Validate() error

Validate checks the field values on StopSendEmailCodeEventReq 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 (*StopSendEmailCodeEventReq) ValidateAll

func (m *StopSendEmailCodeEventReq) ValidateAll() error

ValidateAll checks the field values on StopSendEmailCodeEventReq 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 StopSendEmailCodeEventReqMultiError, or nil if none found.

type StopSendEmailCodeEventReqMultiError

type StopSendEmailCodeEventReqMultiError []error

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

func (StopSendEmailCodeEventReqMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (StopSendEmailCodeEventReqMultiError) Error

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

type StopSendEmailCodeEventReqValidationError

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

StopSendEmailCodeEventReqValidationError is the validation error returned by StopSendEmailCodeEventReq.Validate if the designated constraints aren't met.

func (StopSendEmailCodeEventReqValidationError) Cause

Cause function returns cause value.

func (StopSendEmailCodeEventReqValidationError) Error

Error satisfies the builtin error interface

func (StopSendEmailCodeEventReqValidationError) ErrorName

ErrorName returns error name.

func (StopSendEmailCodeEventReqValidationError) Field

Field function returns field value.

func (StopSendEmailCodeEventReqValidationError) Key

Key function returns key value.

func (StopSendEmailCodeEventReqValidationError) Reason

Reason function returns reason value.

type StopSendEmailCodeEventResp

type StopSendEmailCodeEventResp struct {
	Code     int32                           `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Reason   string                          `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	Message  string                          `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	Metadata map[string]string               `` /* 157-byte string literal not displayed */
	Data     *StopSendEmailCodeEventRespData `protobuf:"bytes,100,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*StopSendEmailCodeEventResp) Descriptor deprecated

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

Deprecated: Use StopSendEmailCodeEventResp.ProtoReflect.Descriptor instead.

func (*StopSendEmailCodeEventResp) GetCode

func (x *StopSendEmailCodeEventResp) GetCode() int32

func (*StopSendEmailCodeEventResp) GetData

func (*StopSendEmailCodeEventResp) GetMessage

func (x *StopSendEmailCodeEventResp) GetMessage() string

func (*StopSendEmailCodeEventResp) GetMetadata

func (x *StopSendEmailCodeEventResp) GetMetadata() map[string]string

func (*StopSendEmailCodeEventResp) GetReason

func (x *StopSendEmailCodeEventResp) GetReason() string

func (*StopSendEmailCodeEventResp) ProtoMessage

func (*StopSendEmailCodeEventResp) ProtoMessage()

func (*StopSendEmailCodeEventResp) ProtoReflect

func (*StopSendEmailCodeEventResp) Reset

func (x *StopSendEmailCodeEventResp) Reset()

func (*StopSendEmailCodeEventResp) String

func (x *StopSendEmailCodeEventResp) String() string

func (*StopSendEmailCodeEventResp) Validate

func (m *StopSendEmailCodeEventResp) Validate() error

Validate checks the field values on StopSendEmailCodeEventResp 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 (*StopSendEmailCodeEventResp) ValidateAll

func (m *StopSendEmailCodeEventResp) ValidateAll() error

ValidateAll checks the field values on StopSendEmailCodeEventResp 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 StopSendEmailCodeEventRespMultiError, or nil if none found.

type StopSendEmailCodeEventRespData

type StopSendEmailCodeEventRespData struct {
	ConsumerCounter int64 `protobuf:"varint,1,opt,name=consumer_counter,json=consumerCounter,proto3" json:"consumer_counter,omitempty"`
	// contains filtered or unexported fields
}

func (*StopSendEmailCodeEventRespData) Descriptor deprecated

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

Deprecated: Use StopSendEmailCodeEventRespData.ProtoReflect.Descriptor instead.

func (*StopSendEmailCodeEventRespData) GetConsumerCounter

func (x *StopSendEmailCodeEventRespData) GetConsumerCounter() int64

func (*StopSendEmailCodeEventRespData) ProtoMessage

func (*StopSendEmailCodeEventRespData) ProtoMessage()

func (*StopSendEmailCodeEventRespData) ProtoReflect

func (*StopSendEmailCodeEventRespData) Reset

func (x *StopSendEmailCodeEventRespData) Reset()

func (*StopSendEmailCodeEventRespData) String

func (*StopSendEmailCodeEventRespData) Validate

func (m *StopSendEmailCodeEventRespData) Validate() error

Validate checks the field values on StopSendEmailCodeEventRespData 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 (*StopSendEmailCodeEventRespData) ValidateAll

func (m *StopSendEmailCodeEventRespData) ValidateAll() error

ValidateAll checks the field values on StopSendEmailCodeEventRespData 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 StopSendEmailCodeEventRespDataMultiError, or nil if none found.

type StopSendEmailCodeEventRespDataMultiError

type StopSendEmailCodeEventRespDataMultiError []error

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

func (StopSendEmailCodeEventRespDataMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (StopSendEmailCodeEventRespDataMultiError) Error

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

type StopSendEmailCodeEventRespDataValidationError

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

StopSendEmailCodeEventRespDataValidationError is the validation error returned by StopSendEmailCodeEventRespData.Validate if the designated constraints aren't met.

func (StopSendEmailCodeEventRespDataValidationError) Cause

Cause function returns cause value.

func (StopSendEmailCodeEventRespDataValidationError) Error

Error satisfies the builtin error interface

func (StopSendEmailCodeEventRespDataValidationError) ErrorName

ErrorName returns error name.

func (StopSendEmailCodeEventRespDataValidationError) Field

Field function returns field value.

func (StopSendEmailCodeEventRespDataValidationError) Key

Key function returns key value.

func (StopSendEmailCodeEventRespDataValidationError) Reason

Reason function returns reason value.

type StopSendEmailCodeEventRespMultiError

type StopSendEmailCodeEventRespMultiError []error

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

func (StopSendEmailCodeEventRespMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (StopSendEmailCodeEventRespMultiError) Error

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

type StopSendEmailCodeEventRespValidationError

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

StopSendEmailCodeEventRespValidationError is the validation error returned by StopSendEmailCodeEventResp.Validate if the designated constraints aren't met.

func (StopSendEmailCodeEventRespValidationError) Cause

Cause function returns cause value.

func (StopSendEmailCodeEventRespValidationError) Error

Error satisfies the builtin error interface

func (StopSendEmailCodeEventRespValidationError) ErrorName

ErrorName returns error name.

func (StopSendEmailCodeEventRespValidationError) Field

Field function returns field value.

func (StopSendEmailCodeEventRespValidationError) Key

Key function returns key value.

func (StopSendEmailCodeEventRespValidationError) Reason

Reason function returns reason value.

type SubscribeSendEmailCodeEventReq

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

func (*SubscribeSendEmailCodeEventReq) Descriptor deprecated

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

Deprecated: Use SubscribeSendEmailCodeEventReq.ProtoReflect.Descriptor instead.

func (*SubscribeSendEmailCodeEventReq) ProtoMessage

func (*SubscribeSendEmailCodeEventReq) ProtoMessage()

func (*SubscribeSendEmailCodeEventReq) ProtoReflect

func (*SubscribeSendEmailCodeEventReq) Reset

func (x *SubscribeSendEmailCodeEventReq) Reset()

func (*SubscribeSendEmailCodeEventReq) String

func (*SubscribeSendEmailCodeEventReq) Validate

func (m *SubscribeSendEmailCodeEventReq) Validate() error

Validate checks the field values on SubscribeSendEmailCodeEventReq 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 (*SubscribeSendEmailCodeEventReq) ValidateAll

func (m *SubscribeSendEmailCodeEventReq) ValidateAll() error

ValidateAll checks the field values on SubscribeSendEmailCodeEventReq 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 SubscribeSendEmailCodeEventReqMultiError, or nil if none found.

type SubscribeSendEmailCodeEventReqMultiError

type SubscribeSendEmailCodeEventReqMultiError []error

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

func (SubscribeSendEmailCodeEventReqMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (SubscribeSendEmailCodeEventReqMultiError) Error

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

type SubscribeSendEmailCodeEventReqValidationError

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

SubscribeSendEmailCodeEventReqValidationError is the validation error returned by SubscribeSendEmailCodeEventReq.Validate if the designated constraints aren't met.

func (SubscribeSendEmailCodeEventReqValidationError) Cause

Cause function returns cause value.

func (SubscribeSendEmailCodeEventReqValidationError) Error

Error satisfies the builtin error interface

func (SubscribeSendEmailCodeEventReqValidationError) ErrorName

ErrorName returns error name.

func (SubscribeSendEmailCodeEventReqValidationError) Field

Field function returns field value.

func (SubscribeSendEmailCodeEventReqValidationError) Key

Key function returns key value.

func (SubscribeSendEmailCodeEventReqValidationError) Reason

Reason function returns reason value.

type SubscribeSendEmailCodeEventResp

type SubscribeSendEmailCodeEventResp struct {
	Code     int32                                `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Reason   string                               `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	Message  string                               `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	Metadata map[string]string                    `` /* 157-byte string literal not displayed */
	Data     *SubscribeSendEmailCodeEventRespData `protobuf:"bytes,100,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*SubscribeSendEmailCodeEventResp) Descriptor deprecated

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

Deprecated: Use SubscribeSendEmailCodeEventResp.ProtoReflect.Descriptor instead.

func (*SubscribeSendEmailCodeEventResp) GetCode

func (*SubscribeSendEmailCodeEventResp) GetData

func (*SubscribeSendEmailCodeEventResp) GetMessage

func (x *SubscribeSendEmailCodeEventResp) GetMessage() string

func (*SubscribeSendEmailCodeEventResp) GetMetadata

func (x *SubscribeSendEmailCodeEventResp) GetMetadata() map[string]string

func (*SubscribeSendEmailCodeEventResp) GetReason

func (x *SubscribeSendEmailCodeEventResp) GetReason() string

func (*SubscribeSendEmailCodeEventResp) ProtoMessage

func (*SubscribeSendEmailCodeEventResp) ProtoMessage()

func (*SubscribeSendEmailCodeEventResp) ProtoReflect

func (*SubscribeSendEmailCodeEventResp) Reset

func (*SubscribeSendEmailCodeEventResp) String

func (*SubscribeSendEmailCodeEventResp) Validate

func (m *SubscribeSendEmailCodeEventResp) Validate() error

Validate checks the field values on SubscribeSendEmailCodeEventResp 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 (*SubscribeSendEmailCodeEventResp) ValidateAll

func (m *SubscribeSendEmailCodeEventResp) ValidateAll() error

ValidateAll checks the field values on SubscribeSendEmailCodeEventResp 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 SubscribeSendEmailCodeEventRespMultiError, or nil if none found.

type SubscribeSendEmailCodeEventRespData

type SubscribeSendEmailCodeEventRespData struct {
	ConsumerCounter int64 `protobuf:"varint,1,opt,name=consumer_counter,json=consumerCounter,proto3" json:"consumer_counter,omitempty"`
	// contains filtered or unexported fields
}

func (*SubscribeSendEmailCodeEventRespData) Descriptor deprecated

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

Deprecated: Use SubscribeSendEmailCodeEventRespData.ProtoReflect.Descriptor instead.

func (*SubscribeSendEmailCodeEventRespData) GetConsumerCounter

func (x *SubscribeSendEmailCodeEventRespData) GetConsumerCounter() int64

func (*SubscribeSendEmailCodeEventRespData) ProtoMessage

func (*SubscribeSendEmailCodeEventRespData) ProtoMessage()

func (*SubscribeSendEmailCodeEventRespData) ProtoReflect

func (*SubscribeSendEmailCodeEventRespData) Reset

func (*SubscribeSendEmailCodeEventRespData) String

func (*SubscribeSendEmailCodeEventRespData) Validate

Validate checks the field values on SubscribeSendEmailCodeEventRespData 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 (*SubscribeSendEmailCodeEventRespData) ValidateAll

func (m *SubscribeSendEmailCodeEventRespData) ValidateAll() error

ValidateAll checks the field values on SubscribeSendEmailCodeEventRespData 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 SubscribeSendEmailCodeEventRespDataMultiError, or nil if none found.

type SubscribeSendEmailCodeEventRespDataMultiError

type SubscribeSendEmailCodeEventRespDataMultiError []error

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

func (SubscribeSendEmailCodeEventRespDataMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (SubscribeSendEmailCodeEventRespDataMultiError) Error

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

type SubscribeSendEmailCodeEventRespDataValidationError

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

SubscribeSendEmailCodeEventRespDataValidationError is the validation error returned by SubscribeSendEmailCodeEventRespData.Validate if the designated constraints aren't met.

func (SubscribeSendEmailCodeEventRespDataValidationError) Cause

Cause function returns cause value.

func (SubscribeSendEmailCodeEventRespDataValidationError) Error

Error satisfies the builtin error interface

func (SubscribeSendEmailCodeEventRespDataValidationError) ErrorName

ErrorName returns error name.

func (SubscribeSendEmailCodeEventRespDataValidationError) Field

Field function returns field value.

func (SubscribeSendEmailCodeEventRespDataValidationError) Key

Key function returns key value.

func (SubscribeSendEmailCodeEventRespDataValidationError) Reason

Reason function returns reason value.

type SubscribeSendEmailCodeEventRespMultiError

type SubscribeSendEmailCodeEventRespMultiError []error

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

func (SubscribeSendEmailCodeEventRespMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (SubscribeSendEmailCodeEventRespMultiError) Error

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

type SubscribeSendEmailCodeEventRespValidationError

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

SubscribeSendEmailCodeEventRespValidationError is the validation error returned by SubscribeSendEmailCodeEventResp.Validate if the designated constraints aren't met.

func (SubscribeSendEmailCodeEventRespValidationError) Cause

Cause function returns cause value.

func (SubscribeSendEmailCodeEventRespValidationError) Error

Error satisfies the builtin error interface

func (SubscribeSendEmailCodeEventRespValidationError) ErrorName

ErrorName returns error name.

func (SubscribeSendEmailCodeEventRespValidationError) Field

Field function returns field value.

func (SubscribeSendEmailCodeEventRespValidationError) Key

Key function returns key value.

func (SubscribeSendEmailCodeEventRespValidationError) Reason

Reason function returns reason value.

type User

type User struct {

	// id ID
	Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	// created_time 创建时间
	CreatedTime string `protobuf:"bytes,2,opt,name=created_time,json=createdTime,proto3" json:"created_time,omitempty"`
	// updated_time 最后修改时间
	UpdatedTime string `protobuf:"bytes,3,opt,name=updated_time,json=updatedTime,proto3" json:"updated_time,omitempty"`
	// deleted_time 删除时间
	DeletedTime uint64 `protobuf:"varint,4,opt,name=deleted_time,json=deletedTime,proto3" json:"deleted_time,omitempty"`
	// user_id uid
	UserId uint64 `protobuf:"varint,5,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// user_phone 手机
	UserPhone string `protobuf:"bytes,6,opt,name=user_phone,json=userPhone,proto3" json:"user_phone,omitempty"`
	// user_email 邮箱
	UserEmail string `protobuf:"bytes,7,opt,name=user_email,json=userEmail,proto3" json:"user_email,omitempty"`
	// user_nickname 昵称
	UserNickname string `protobuf:"bytes,8,opt,name=user_nickname,json=userNickname,proto3" json:"user_nickname,omitempty"`
	// user_avatar 头像
	UserAvatar string `protobuf:"bytes,9,opt,name=user_avatar,json=userAvatar,proto3" json:"user_avatar,omitempty"`
	// user_gender 性别;0:INIT,1:MALE,2:FEMALE,3:SECRET
	UserGender enums.UserGenderEnum_UserGender `` /* 148-byte string literal not displayed */
	// user_status 状态;0:INIT,1:ENABLE,2:DISABLE,3:WHITELIST,4:BLACKLIST,5:DELETED
	UserStatus enums.UserStatusEnum_UserStatus `` /* 148-byte string literal not displayed */
	// contains filtered or unexported fields
}

User 用户

func (*User) Descriptor deprecated

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

Deprecated: Use User.ProtoReflect.Descriptor instead.

func (*User) GetCreatedTime

func (x *User) GetCreatedTime() string

func (*User) GetDeletedTime

func (x *User) GetDeletedTime() uint64

func (*User) GetId

func (x *User) GetId() uint64

func (*User) GetUpdatedTime

func (x *User) GetUpdatedTime() string

func (*User) GetUserAvatar

func (x *User) GetUserAvatar() string

func (*User) GetUserEmail

func (x *User) GetUserEmail() string

func (*User) GetUserGender

func (x *User) GetUserGender() enums.UserGenderEnum_UserGender

func (*User) GetUserId

func (x *User) GetUserId() uint64

func (*User) GetUserNickname

func (x *User) GetUserNickname() string

func (*User) GetUserPhone

func (x *User) GetUserPhone() string

func (*User) GetUserStatus

func (x *User) GetUserStatus() enums.UserStatusEnum_UserStatus

func (*User) ProtoMessage

func (*User) ProtoMessage()

func (*User) ProtoReflect

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

func (*User) Reset

func (x *User) Reset()

func (*User) String

func (x *User) String() string

func (*User) Validate

func (m *User) Validate() error

Validate checks the field values on User 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 (*User) ValidateAll

func (m *User) ValidateAll() error

ValidateAll checks the field values on User 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 UserMultiError, or nil if none found.

type UserConfirmCode

type UserConfirmCode struct {

	// id ID
	Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	// created_time 创建时间
	CreatedTime string `protobuf:"bytes,2,opt,name=created_time,json=createdTime,proto3" json:"created_time,omitempty"`
	// updated_time 最后修改时间
	UpdatedTime string `protobuf:"bytes,3,opt,name=updated_time,json=updatedTime,proto3" json:"updated_time,omitempty"`
	// user_identify 用户标识;手机、邮箱、。。。
	UserIdentify string `protobuf:"bytes,4,opt,name=user_identify,json=userIdentify,proto3" json:"user_identify,omitempty"`
	// confirm_type 确认方式;1:邮箱,2:手机,3:密码,。。。
	ConfirmType enums.UserVerifyTypeEnum_UserVerifyType `` /* 158-byte string literal not displayed */
	// confirm_code 验证码
	ConfirmCode string `protobuf:"bytes,6,opt,name=confirm_code,json=confirmCode,proto3" json:"confirm_code,omitempty"`
	// confirm_status 确认状态;0:未指定,1:确认中,2:已确认,3:已过期,2:已取消
	ConfirmStatus enums.UserVerifyStatusEnum_UserVerifyStatus `` /* 168-byte string literal not displayed */
	// confirm_time 确认时间
	ConfirmTime uint64 `protobuf:"varint,8,opt,name=confirm_time,json=confirmTime,proto3" json:"confirm_time,omitempty"`
	// cancel_time 取消时间
	CancelTime uint64 `protobuf:"varint,9,opt,name=cancel_time,json=cancelTime,proto3" json:"cancel_time,omitempty"`
	// contains filtered or unexported fields
}

UserConfirmCode ENGINE InnoDB CHARSET utf8mb4 COMMENT '用户验证码确认表'

func (*UserConfirmCode) Descriptor deprecated

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

Deprecated: Use UserConfirmCode.ProtoReflect.Descriptor instead.

func (*UserConfirmCode) GetCancelTime

func (x *UserConfirmCode) GetCancelTime() uint64

func (*UserConfirmCode) GetConfirmCode

func (x *UserConfirmCode) GetConfirmCode() string

func (*UserConfirmCode) GetConfirmStatus

func (*UserConfirmCode) GetConfirmTime

func (x *UserConfirmCode) GetConfirmTime() uint64

func (*UserConfirmCode) GetConfirmType

func (*UserConfirmCode) GetCreatedTime

func (x *UserConfirmCode) GetCreatedTime() string

func (*UserConfirmCode) GetId

func (x *UserConfirmCode) GetId() uint64

func (*UserConfirmCode) GetUpdatedTime

func (x *UserConfirmCode) GetUpdatedTime() string

func (*UserConfirmCode) GetUserIdentify

func (x *UserConfirmCode) GetUserIdentify() string

func (*UserConfirmCode) ProtoMessage

func (*UserConfirmCode) ProtoMessage()

func (*UserConfirmCode) ProtoReflect

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

func (*UserConfirmCode) Reset

func (x *UserConfirmCode) Reset()

func (*UserConfirmCode) String

func (x *UserConfirmCode) String() string

func (*UserConfirmCode) Validate

func (m *UserConfirmCode) Validate() error

Validate checks the field values on UserConfirmCode 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 (*UserConfirmCode) ValidateAll

func (m *UserConfirmCode) ValidateAll() error

ValidateAll checks the field values on UserConfirmCode 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 UserConfirmCodeMultiError, or nil if none found.

type UserConfirmCodeMultiError

type UserConfirmCodeMultiError []error

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

func (UserConfirmCodeMultiError) AllErrors

func (m UserConfirmCodeMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserConfirmCodeMultiError) Error

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

type UserConfirmCodeValidationError

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

UserConfirmCodeValidationError is the validation error returned by UserConfirmCode.Validate if the designated constraints aren't met.

func (UserConfirmCodeValidationError) Cause

Cause function returns cause value.

func (UserConfirmCodeValidationError) Error

Error satisfies the builtin error interface

func (UserConfirmCodeValidationError) ErrorName

func (e UserConfirmCodeValidationError) ErrorName() string

ErrorName returns error name.

func (UserConfirmCodeValidationError) Field

Field function returns field value.

func (UserConfirmCodeValidationError) Key

Key function returns key value.

func (UserConfirmCodeValidationError) Reason

Reason function returns reason value.

type UserInfo

type UserInfo struct {
	UserId       uint64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	UserNickname string `protobuf:"bytes,2,opt,name=user_nickname,json=userNickname,proto3" json:"user_nickname,omitempty"`
	UserAvatar   string `protobuf:"bytes,3,opt,name=user_avatar,json=userAvatar,proto3" json:"user_avatar,omitempty"`
	// contains filtered or unexported fields
}

UserInfo 用户信息

func (*UserInfo) Descriptor deprecated

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

Deprecated: Use UserInfo.ProtoReflect.Descriptor instead.

func (*UserInfo) GetUserAvatar

func (x *UserInfo) GetUserAvatar() string

func (*UserInfo) GetUserId

func (x *UserInfo) GetUserId() uint64

func (*UserInfo) GetUserNickname

func (x *UserInfo) GetUserNickname() string

func (*UserInfo) ProtoMessage

func (*UserInfo) ProtoMessage()

func (*UserInfo) ProtoReflect

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

func (*UserInfo) Reset

func (x *UserInfo) Reset()

func (*UserInfo) String

func (x *UserInfo) String() string

func (*UserInfo) Validate

func (m *UserInfo) Validate() error

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

func (*UserInfo) ValidateAll

func (m *UserInfo) ValidateAll() error

ValidateAll checks the field values on UserInfo 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 UserInfoMultiError, or nil if none found.

type UserInfoMultiError

type UserInfoMultiError []error

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

func (UserInfoMultiError) AllErrors

func (m UserInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserInfoMultiError) Error

func (m UserInfoMultiError) Error() string

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

type UserInfoValidationError

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

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

func (UserInfoValidationError) Cause

func (e UserInfoValidationError) Cause() error

Cause function returns cause value.

func (UserInfoValidationError) Error

func (e UserInfoValidationError) Error() string

Error satisfies the builtin error interface

func (UserInfoValidationError) ErrorName

func (e UserInfoValidationError) ErrorName() string

ErrorName returns error name.

func (UserInfoValidationError) Field

func (e UserInfoValidationError) Field() string

Field function returns field value.

func (UserInfoValidationError) Key

func (e UserInfoValidationError) Key() bool

Key function returns key value.

func (UserInfoValidationError) Reason

func (e UserInfoValidationError) Reason() string

Reason function returns reason value.

type UserListReq

type UserListReq struct {
	PageRequest  *page.PageRequest `protobuf:"bytes,1,opt,name=page_request,json=pageRequest,proto3" json:"page_request,omitempty"`
	UserIds      []uint64          `protobuf:"varint,2,rep,packed,name=user_ids,json=userIds,proto3" json:"user_ids,omitempty"`
	ContactEmail string            `protobuf:"bytes,3,opt,name=contact_email,json=contactEmail,proto3" json:"contact_email,omitempty"`
	ContactPhone string            `protobuf:"bytes,4,opt,name=contact_phone,json=contactPhone,proto3" json:"contact_phone,omitempty"`
	// contains filtered or unexported fields
}

UserListReq list

func (*UserListReq) Descriptor deprecated

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

Deprecated: Use UserListReq.ProtoReflect.Descriptor instead.

func (*UserListReq) GetContactEmail

func (x *UserListReq) GetContactEmail() string

func (*UserListReq) GetContactPhone

func (x *UserListReq) GetContactPhone() string

func (*UserListReq) GetPageRequest

func (x *UserListReq) GetPageRequest() *page.PageRequest

func (*UserListReq) GetUserIds

func (x *UserListReq) GetUserIds() []uint64

func (*UserListReq) ProtoMessage

func (*UserListReq) ProtoMessage()

func (*UserListReq) ProtoReflect

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

func (*UserListReq) Reset

func (x *UserListReq) Reset()

func (*UserListReq) String

func (x *UserListReq) String() string

func (*UserListReq) Validate

func (m *UserListReq) Validate() error

Validate checks the field values on UserListReq 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 (*UserListReq) ValidateAll

func (m *UserListReq) ValidateAll() error

ValidateAll checks the field values on UserListReq 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 UserListReqMultiError, or nil if none found.

type UserListReqMultiError

type UserListReqMultiError []error

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

func (UserListReqMultiError) AllErrors

func (m UserListReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserListReqMultiError) Error

func (m UserListReqMultiError) Error() string

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

type UserListReqValidationError

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

UserListReqValidationError is the validation error returned by UserListReq.Validate if the designated constraints aren't met.

func (UserListReqValidationError) Cause

Cause function returns cause value.

func (UserListReqValidationError) Error

Error satisfies the builtin error interface

func (UserListReqValidationError) ErrorName

func (e UserListReqValidationError) ErrorName() string

ErrorName returns error name.

func (UserListReqValidationError) Field

Field function returns field value.

func (UserListReqValidationError) Key

Key function returns key value.

func (UserListReqValidationError) Reason

Reason function returns reason value.

type UserListResp

type UserListResp struct {
	Code     int32             `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Reason   string            `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	Message  string            `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	Metadata map[string]string `` /* 157-byte string literal not displayed */
	Data     *UserListRespData `protobuf:"bytes,100,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*UserListResp) Descriptor deprecated

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

Deprecated: Use UserListResp.ProtoReflect.Descriptor instead.

func (*UserListResp) GetCode

func (x *UserListResp) GetCode() int32

func (*UserListResp) GetData

func (x *UserListResp) GetData() *UserListRespData

func (*UserListResp) GetMessage

func (x *UserListResp) GetMessage() string

func (*UserListResp) GetMetadata

func (x *UserListResp) GetMetadata() map[string]string

func (*UserListResp) GetReason

func (x *UserListResp) GetReason() string

func (*UserListResp) ProtoMessage

func (*UserListResp) ProtoMessage()

func (*UserListResp) ProtoReflect

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

func (*UserListResp) Reset

func (x *UserListResp) Reset()

func (*UserListResp) String

func (x *UserListResp) String() string

func (*UserListResp) Validate

func (m *UserListResp) Validate() error

Validate checks the field values on UserListResp 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 (*UserListResp) ValidateAll

func (m *UserListResp) ValidateAll() error

ValidateAll checks the field values on UserListResp 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 UserListRespMultiError, or nil if none found.

type UserListRespData

type UserListRespData struct {
	List     []*User            `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
	PageInfo *page.PageResponse `protobuf:"bytes,2,opt,name=page_info,json=pageInfo,proto3" json:"page_info,omitempty"`
	// contains filtered or unexported fields
}

func (*UserListRespData) Descriptor deprecated

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

Deprecated: Use UserListRespData.ProtoReflect.Descriptor instead.

func (*UserListRespData) GetList

func (x *UserListRespData) GetList() []*User

func (*UserListRespData) GetPageInfo

func (x *UserListRespData) GetPageInfo() *page.PageResponse

func (*UserListRespData) ProtoMessage

func (*UserListRespData) ProtoMessage()

func (*UserListRespData) ProtoReflect

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

func (*UserListRespData) Reset

func (x *UserListRespData) Reset()

func (*UserListRespData) String

func (x *UserListRespData) String() string

func (*UserListRespData) Validate

func (m *UserListRespData) Validate() error

Validate checks the field values on UserListRespData 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 (*UserListRespData) ValidateAll

func (m *UserListRespData) ValidateAll() error

ValidateAll checks the field values on UserListRespData 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 UserListRespDataMultiError, or nil if none found.

type UserListRespDataMultiError

type UserListRespDataMultiError []error

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

func (UserListRespDataMultiError) AllErrors

func (m UserListRespDataMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserListRespDataMultiError) Error

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

type UserListRespDataValidationError

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

UserListRespDataValidationError is the validation error returned by UserListRespData.Validate if the designated constraints aren't met.

func (UserListRespDataValidationError) Cause

Cause function returns cause value.

func (UserListRespDataValidationError) Error

Error satisfies the builtin error interface

func (UserListRespDataValidationError) ErrorName

ErrorName returns error name.

func (UserListRespDataValidationError) Field

Field function returns field value.

func (UserListRespDataValidationError) Key

Key function returns key value.

func (UserListRespDataValidationError) Reason

Reason function returns reason value.

type UserListRespMultiError

type UserListRespMultiError []error

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

func (UserListRespMultiError) AllErrors

func (m UserListRespMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserListRespMultiError) Error

func (m UserListRespMultiError) Error() string

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

type UserListRespValidationError

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

UserListRespValidationError is the validation error returned by UserListResp.Validate if the designated constraints aren't met.

func (UserListRespValidationError) Cause

Cause function returns cause value.

func (UserListRespValidationError) Error

Error satisfies the builtin error interface

func (UserListRespValidationError) ErrorName

func (e UserListRespValidationError) ErrorName() string

ErrorName returns error name.

func (UserListRespValidationError) Field

Field function returns field value.

func (UserListRespValidationError) Key

Key function returns key value.

func (UserListRespValidationError) Reason

Reason function returns reason value.

type UserMultiError

type UserMultiError []error

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

func (UserMultiError) AllErrors

func (m UserMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserMultiError) Error

func (m UserMultiError) Error() string

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

type UserProcessResult

type UserProcessResult struct {
	IsSuccess bool `protobuf:"varint,1,opt,name=is_success,json=isSuccess,proto3" json:"is_success,omitempty"`
	// contains filtered or unexported fields
}

UserProcessResult process result

func (*UserProcessResult) Descriptor deprecated

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

Deprecated: Use UserProcessResult.ProtoReflect.Descriptor instead.

func (*UserProcessResult) GetIsSuccess

func (x *UserProcessResult) GetIsSuccess() bool

func (*UserProcessResult) ProtoMessage

func (*UserProcessResult) ProtoMessage()

func (*UserProcessResult) ProtoReflect

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

func (*UserProcessResult) Reset

func (x *UserProcessResult) Reset()

func (*UserProcessResult) String

func (x *UserProcessResult) String() string

func (*UserProcessResult) Validate

func (m *UserProcessResult) Validate() error

Validate checks the field values on UserProcessResult 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 (*UserProcessResult) ValidateAll

func (m *UserProcessResult) ValidateAll() error

ValidateAll checks the field values on UserProcessResult 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 UserProcessResultMultiError, or nil if none found.

type UserProcessResultMultiError

type UserProcessResultMultiError []error

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

func (UserProcessResultMultiError) AllErrors

func (m UserProcessResultMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserProcessResultMultiError) Error

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

type UserProcessResultValidationError

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

UserProcessResultValidationError is the validation error returned by UserProcessResult.Validate if the designated constraints aren't met.

func (UserProcessResultValidationError) Cause

Cause function returns cause value.

func (UserProcessResultValidationError) Error

Error satisfies the builtin error interface

func (UserProcessResultValidationError) ErrorName

ErrorName returns error name.

func (UserProcessResultValidationError) Field

Field function returns field value.

func (UserProcessResultValidationError) Key

Key function returns key value.

func (UserProcessResultValidationError) Reason

Reason function returns reason value.

type UserRegEmail

type UserRegEmail struct {

	// id ID
	Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	// created_time 创建时间
	CreatedTime string `protobuf:"bytes,2,opt,name=created_time,json=createdTime,proto3" json:"created_time,omitempty"`
	// updated_time 最后修改时间
	UpdatedTime string `protobuf:"bytes,3,opt,name=updated_time,json=updatedTime,proto3" json:"updated_time,omitempty"`
	// deleted_time 删除时间
	DeletedTime uint64 `protobuf:"varint,4,opt,name=deleted_time,json=deletedTime,proto3" json:"deleted_time,omitempty"`
	// user_id uid
	UserId uint64 `protobuf:"varint,5,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// user_email 邮箱
	UserEmail string `protobuf:"bytes,6,opt,name=user_email,json=userEmail,proto3" json:"user_email,omitempty"`
	// contains filtered or unexported fields
}

UserRegEmail 用户注册邮箱

func (*UserRegEmail) Descriptor deprecated

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

Deprecated: Use UserRegEmail.ProtoReflect.Descriptor instead.

func (*UserRegEmail) GetCreatedTime

func (x *UserRegEmail) GetCreatedTime() string

func (*UserRegEmail) GetDeletedTime

func (x *UserRegEmail) GetDeletedTime() uint64

func (*UserRegEmail) GetId

func (x *UserRegEmail) GetId() uint64

func (*UserRegEmail) GetUpdatedTime

func (x *UserRegEmail) GetUpdatedTime() string

func (*UserRegEmail) GetUserEmail

func (x *UserRegEmail) GetUserEmail() string

func (*UserRegEmail) GetUserId

func (x *UserRegEmail) GetUserId() uint64

func (*UserRegEmail) ProtoMessage

func (*UserRegEmail) ProtoMessage()

func (*UserRegEmail) ProtoReflect

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

func (*UserRegEmail) Reset

func (x *UserRegEmail) Reset()

func (*UserRegEmail) String

func (x *UserRegEmail) String() string

func (*UserRegEmail) Validate

func (m *UserRegEmail) Validate() error

Validate checks the field values on UserRegEmail 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 (*UserRegEmail) ValidateAll

func (m *UserRegEmail) ValidateAll() error

ValidateAll checks the field values on UserRegEmail 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 UserRegEmailMultiError, or nil if none found.

type UserRegEmailMultiError

type UserRegEmailMultiError []error

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

func (UserRegEmailMultiError) AllErrors

func (m UserRegEmailMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserRegEmailMultiError) Error

func (m UserRegEmailMultiError) Error() string

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

type UserRegEmailValidationError

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

UserRegEmailValidationError is the validation error returned by UserRegEmail.Validate if the designated constraints aren't met.

func (UserRegEmailValidationError) Cause

Cause function returns cause value.

func (UserRegEmailValidationError) Error

Error satisfies the builtin error interface

func (UserRegEmailValidationError) ErrorName

func (e UserRegEmailValidationError) ErrorName() string

ErrorName returns error name.

func (UserRegEmailValidationError) Field

Field function returns field value.

func (UserRegEmailValidationError) Key

Key function returns key value.

func (UserRegEmailValidationError) Reason

Reason function returns reason value.

type UserRegPhone

type UserRegPhone struct {

	// id ID
	Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	// created_time 创建时间
	CreatedTime string `protobuf:"bytes,2,opt,name=created_time,json=createdTime,proto3" json:"created_time,omitempty"`
	// updated_time 最后修改时间
	UpdatedTime string `protobuf:"bytes,3,opt,name=updated_time,json=updatedTime,proto3" json:"updated_time,omitempty"`
	// deleted_time 删除时间
	DeletedTime uint64 `protobuf:"varint,4,opt,name=deleted_time,json=deletedTime,proto3" json:"deleted_time,omitempty"`
	// user_id uid
	UserId uint64 `protobuf:"varint,5,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// user_phone 手机
	UserPhone string `protobuf:"bytes,6,opt,name=user_phone,json=userPhone,proto3" json:"user_phone,omitempty"`
	// contains filtered or unexported fields
}

UserRegPhone 用户_注册_手机

func (*UserRegPhone) Descriptor deprecated

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

Deprecated: Use UserRegPhone.ProtoReflect.Descriptor instead.

func (*UserRegPhone) GetCreatedTime

func (x *UserRegPhone) GetCreatedTime() string

func (*UserRegPhone) GetDeletedTime

func (x *UserRegPhone) GetDeletedTime() uint64

func (*UserRegPhone) GetId

func (x *UserRegPhone) GetId() uint64

func (*UserRegPhone) GetUpdatedTime

func (x *UserRegPhone) GetUpdatedTime() string

func (*UserRegPhone) GetUserId

func (x *UserRegPhone) GetUserId() uint64

func (*UserRegPhone) GetUserPhone

func (x *UserRegPhone) GetUserPhone() string

func (*UserRegPhone) ProtoMessage

func (*UserRegPhone) ProtoMessage()

func (*UserRegPhone) ProtoReflect

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

func (*UserRegPhone) Reset

func (x *UserRegPhone) Reset()

func (*UserRegPhone) String

func (x *UserRegPhone) String() string

func (*UserRegPhone) Validate

func (m *UserRegPhone) Validate() error

Validate checks the field values on UserRegPhone 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 (*UserRegPhone) ValidateAll

func (m *UserRegPhone) ValidateAll() error

ValidateAll checks the field values on UserRegPhone 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 UserRegPhoneMultiError, or nil if none found.

type UserRegPhoneMultiError

type UserRegPhoneMultiError []error

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

func (UserRegPhoneMultiError) AllErrors

func (m UserRegPhoneMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserRegPhoneMultiError) Error

func (m UserRegPhoneMultiError) Error() string

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

type UserRegPhoneValidationError

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

UserRegPhoneValidationError is the validation error returned by UserRegPhone.Validate if the designated constraints aren't met.

func (UserRegPhoneValidationError) Cause

Cause function returns cause value.

func (UserRegPhoneValidationError) Error

Error satisfies the builtin error interface

func (UserRegPhoneValidationError) ErrorName

func (e UserRegPhoneValidationError) ErrorName() string

ErrorName returns error name.

func (UserRegPhoneValidationError) Field

Field function returns field value.

func (UserRegPhoneValidationError) Key

Key function returns key value.

func (UserRegPhoneValidationError) Reason

Reason function returns reason value.

type UserValidationError

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

UserValidationError is the validation error returned by User.Validate if the designated constraints aren't met.

func (UserValidationError) Cause

func (e UserValidationError) Cause() error

Cause function returns cause value.

func (UserValidationError) Error

func (e UserValidationError) Error() string

Error satisfies the builtin error interface

func (UserValidationError) ErrorName

func (e UserValidationError) ErrorName() string

ErrorName returns error name.

func (UserValidationError) Field

func (e UserValidationError) Field() string

Field function returns field value.

func (UserValidationError) Key

func (e UserValidationError) Key() bool

Key function returns key value.

func (UserValidationError) Reason

func (e UserValidationError) Reason() string

Reason function returns reason value.

Jump to

Keyboard shortcuts

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