ucenter

package
v0.0.0-...-b08fcc5 Latest Latest
Warning

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

Go to latest
Published: Jun 22, 2023 License: Apache-2.0 Imports: 25 Imported by: 0

Documentation

Index

Constants

View Source
const (
	InLive        = "inLive"
	Barrage       = "barrage"
	Share         = "share"
	Follow        = "follow"
	Likes         = "likes"
	FirstRecharge = "firstRecharge"
	SendGift      = "sendGift"
	LivingTime    = "livingTime"
	Income        = "income"
)
View Source
const (
	InLiveExpr        = "limitinLive"
	BarrageExpr       = "limibarrage"
	ShareExpr         = "limishare"
	FollowExpr        = "limifollow"
	LikesExpr         = "limilikes"
	FirstRechargeExpr = "limifirstRecharge"
	SendGiftExpr      = "limisendGift"
	LivingTimeExpr    = "limilivingTime"
	IncomeExpr        = "limiincome"
)
View Source
const (
	TopicUserShare   = "event.user.share.invitation"
	TopicUserCreate  = "event.user.create"
	TopicUserUpgrade = "event.user.upgrade.level"
)

Variables

View Source
var (
	UserMaxLevel    int64 = 100
	UserMaxExpire   int64 = 62400000
	AnchorMaxLevel  int64 = 50
	AnchorMaxExpire int64 = 8880000

	UserDict = []int64{}/* 101 elements not displayed */

	AnchorDict = []int64{
		0, 720, 1440, 2880, 6000, 9600, 14400, 28800, 48000, 72000, 96000,
		120000, 150000, 180000, 216000, 252000, 300000, 336000, 372000, 456000, 564000,
		672000, 780000, 900000, 1020000, 1140000, 1320000, 1500000, 1680000, 1800000, 1920000,
		2100000, 2280000, 2520000, 2760000, 3000000, 3360000, 3720000, 4080000, 4440000, 4800000,
		5160000, 5520000, 6000000, 6360000, 6720000, 7080000, 7440000, 7920000, 8400000, 8880000,
	}

	ExperDailyLimit = map[string]int64{
		InLive:            300,
		Barrage:           100,
		Share:             300,
		Follow:            100,
		Likes:             100,
		LivingTime:        300,
		InLiveExpr:        10,
		BarrageExpr:       5,
		ShareExpr:         20,
		FollowExpr:        10,
		LikesExpr:         1,
		FirstRechargeExpr: 10000,
		LivingTimeExpr:    10,
		IncomeExpr:        1,
	}
)
View Source
var (
	TripartitePlat_name = map[int32]string{
		0: "plat_51live",
		1: "plat_apple",
		2: "plat_google",
		3: "plat_facebook",
		4: "plat_twitter",
		5: "plat_line",
	}
	TripartitePlat_value = map[string]int32{
		"plat_51live":   0,
		"plat_apple":    1,
		"plat_google":   2,
		"plat_facebook": 3,
		"plat_twitter":  4,
		"plat_line":     5,
	}
)

Enum value maps for TripartitePlat.

View Source
var (
	Platform_name = map[int32]string{
		0: "model_un_know",
		1: "model_ios",
		2: "model_android",
	}
	Platform_value = map[string]int32{
		"model_un_know": 0,
		"model_ios":     1,
		"model_android": 2,
	}
)

Enum value maps for Platform.

View Source
var File_proto_ucenter_ucenter_proto protoreflect.FileDescriptor

Functions

func AnchorLevel

func AnchorLevel(experience int64) int64

func GetExperDailyLimit

func GetExperDailyLimit(s string) int64

func NewUcenterEndpoints

func NewUcenterEndpoints() []*api.Endpoint

func RegisterUcenterHandler

func RegisterUcenterHandler(s server.Server, hdlr UcenterHandler, opts ...server.HandlerOption) error

func UserLevel

func UserLevel(experience int64) int64

Types

type ActivateRequest

type ActivateRequest struct {
	UserId int64 `protobuf:"varint,1,opt,name=UserId,proto3" json:"UserId"` // 用户UserId
	// contains filtered or unexported fields
}

func (*ActivateRequest) Descriptor deprecated

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

Deprecated: Use ActivateRequest.ProtoReflect.Descriptor instead.

func (*ActivateRequest) GetUserId

func (x *ActivateRequest) GetUserId() int64

func (*ActivateRequest) ProtoMessage

func (*ActivateRequest) ProtoMessage()

func (*ActivateRequest) ProtoReflect

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

func (*ActivateRequest) Reset

func (x *ActivateRequest) Reset()

func (*ActivateRequest) String

func (x *ActivateRequest) String() string

func (*ActivateRequest) Validate

func (m *ActivateRequest) Validate() error

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

func (m *ActivateRequest) ValidateAll() error

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

type ActivateRequestMultiError

type ActivateRequestMultiError []error

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

func (ActivateRequestMultiError) AllErrors

func (m ActivateRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ActivateRequestMultiError) Error

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

type ActivateRequestValidationError

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

ActivateRequestValidationError is the validation error returned by ActivateRequest.Validate if the designated constraints aren't met.

func (ActivateRequestValidationError) Cause

Cause function returns cause value.

func (ActivateRequestValidationError) Error

Error satisfies the builtin error interface

func (ActivateRequestValidationError) ErrorName

func (e ActivateRequestValidationError) ErrorName() string

ErrorName returns error name.

func (ActivateRequestValidationError) Field

Field function returns field value.

func (ActivateRequestValidationError) Key

Key function returns key value.

func (ActivateRequestValidationError) Reason

Reason function returns reason value.

type AnchorLevelFansRequest

type AnchorLevelFansRequest struct {
	UserIds []int64 `protobuf:"varint,1,rep,packed,name=UserIds,proto3" json:"UserIds"`
	// contains filtered or unexported fields
}

func (*AnchorLevelFansRequest) Descriptor deprecated

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

Deprecated: Use AnchorLevelFansRequest.ProtoReflect.Descriptor instead.

func (*AnchorLevelFansRequest) GetUserIds

func (x *AnchorLevelFansRequest) GetUserIds() []int64

func (*AnchorLevelFansRequest) ProtoMessage

func (*AnchorLevelFansRequest) ProtoMessage()

func (*AnchorLevelFansRequest) ProtoReflect

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

func (*AnchorLevelFansRequest) Reset

func (x *AnchorLevelFansRequest) Reset()

func (*AnchorLevelFansRequest) String

func (x *AnchorLevelFansRequest) String() string

func (*AnchorLevelFansRequest) Validate

func (m *AnchorLevelFansRequest) Validate() error

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

func (m *AnchorLevelFansRequest) ValidateAll() error

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

type AnchorLevelFansRequestMultiError

type AnchorLevelFansRequestMultiError []error

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

func (AnchorLevelFansRequestMultiError) AllErrors

func (m AnchorLevelFansRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AnchorLevelFansRequestMultiError) Error

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

type AnchorLevelFansRequestValidationError

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

AnchorLevelFansRequestValidationError is the validation error returned by AnchorLevelFansRequest.Validate if the designated constraints aren't met.

func (AnchorLevelFansRequestValidationError) Cause

Cause function returns cause value.

func (AnchorLevelFansRequestValidationError) Error

Error satisfies the builtin error interface

func (AnchorLevelFansRequestValidationError) ErrorName

ErrorName returns error name.

func (AnchorLevelFansRequestValidationError) Field

Field function returns field value.

func (AnchorLevelFansRequestValidationError) Key

Key function returns key value.

func (AnchorLevelFansRequestValidationError) Reason

Reason function returns reason value.

type AnchorLevelFansResponse

type AnchorLevelFansResponse struct {
	Items map[int64]*ItemLevelFans `` /* 142-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*AnchorLevelFansResponse) Descriptor deprecated

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

Deprecated: Use AnchorLevelFansResponse.ProtoReflect.Descriptor instead.

func (*AnchorLevelFansResponse) GetItems

func (x *AnchorLevelFansResponse) GetItems() map[int64]*ItemLevelFans

func (*AnchorLevelFansResponse) ProtoMessage

func (*AnchorLevelFansResponse) ProtoMessage()

func (*AnchorLevelFansResponse) ProtoReflect

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

func (*AnchorLevelFansResponse) Reset

func (x *AnchorLevelFansResponse) Reset()

func (*AnchorLevelFansResponse) String

func (x *AnchorLevelFansResponse) String() string

func (*AnchorLevelFansResponse) Validate

func (m *AnchorLevelFansResponse) Validate() error

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

func (m *AnchorLevelFansResponse) ValidateAll() error

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

type AnchorLevelFansResponseMultiError

type AnchorLevelFansResponseMultiError []error

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

func (AnchorLevelFansResponseMultiError) AllErrors

func (m AnchorLevelFansResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AnchorLevelFansResponseMultiError) Error

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

type AnchorLevelFansResponseValidationError

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

AnchorLevelFansResponseValidationError is the validation error returned by AnchorLevelFansResponse.Validate if the designated constraints aren't met.

func (AnchorLevelFansResponseValidationError) Cause

Cause function returns cause value.

func (AnchorLevelFansResponseValidationError) Error

Error satisfies the builtin error interface

func (AnchorLevelFansResponseValidationError) ErrorName

ErrorName returns error name.

func (AnchorLevelFansResponseValidationError) Field

Field function returns field value.

func (AnchorLevelFansResponseValidationError) Key

Key function returns key value.

func (AnchorLevelFansResponseValidationError) Reason

Reason function returns reason value.

type AssistantUserItem

type AssistantUserItem struct {
	UserId    int64  `protobuf:"varint,1,opt,name=UserId,proto3" json:"UserId"`
	ShowId    int64  `protobuf:"varint,2,opt,name=ShowId,proto3" json:"ShowId"`
	CreatedAt string `protobuf:"bytes,3,opt,name=CreatedAt,proto3" json:"CreatedAt"`
	UpdatedAt string `protobuf:"bytes,4,opt,name=UpdatedAt,proto3" json:"UpdatedAt"`
	// contains filtered or unexported fields
}

func (*AssistantUserItem) Descriptor deprecated

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

Deprecated: Use AssistantUserItem.ProtoReflect.Descriptor instead.

func (*AssistantUserItem) GetCreatedAt

func (x *AssistantUserItem) GetCreatedAt() string

func (*AssistantUserItem) GetShowId

func (x *AssistantUserItem) GetShowId() int64

func (*AssistantUserItem) GetUpdatedAt

func (x *AssistantUserItem) GetUpdatedAt() string

func (*AssistantUserItem) GetUserId

func (x *AssistantUserItem) GetUserId() int64

func (*AssistantUserItem) ProtoMessage

func (*AssistantUserItem) ProtoMessage()

func (*AssistantUserItem) ProtoReflect

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

func (*AssistantUserItem) Reset

func (x *AssistantUserItem) Reset()

func (*AssistantUserItem) String

func (x *AssistantUserItem) String() string

func (*AssistantUserItem) Validate

func (m *AssistantUserItem) Validate() error

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

func (m *AssistantUserItem) ValidateAll() error

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

type AssistantUserItemMultiError

type AssistantUserItemMultiError []error

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

func (AssistantUserItemMultiError) AllErrors

func (m AssistantUserItemMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AssistantUserItemMultiError) Error

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

type AssistantUserItemValidationError

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

AssistantUserItemValidationError is the validation error returned by AssistantUserItem.Validate if the designated constraints aren't met.

func (AssistantUserItemValidationError) Cause

Cause function returns cause value.

func (AssistantUserItemValidationError) Error

Error satisfies the builtin error interface

func (AssistantUserItemValidationError) ErrorName

ErrorName returns error name.

func (AssistantUserItemValidationError) Field

Field function returns field value.

func (AssistantUserItemValidationError) Key

Key function returns key value.

func (AssistantUserItemValidationError) Reason

Reason function returns reason value.

type CountUserResponse

type CountUserResponse struct {
	Total int64 `protobuf:"varint,1,opt,name=Total,proto3" json:"Total"`
	// contains filtered or unexported fields
}

func (*CountUserResponse) Descriptor deprecated

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

Deprecated: Use CountUserResponse.ProtoReflect.Descriptor instead.

func (*CountUserResponse) GetTotal

func (x *CountUserResponse) GetTotal() int64

func (*CountUserResponse) ProtoMessage

func (*CountUserResponse) ProtoMessage()

func (*CountUserResponse) ProtoReflect

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

func (*CountUserResponse) Reset

func (x *CountUserResponse) Reset()

func (*CountUserResponse) String

func (x *CountUserResponse) String() string

func (*CountUserResponse) Validate

func (m *CountUserResponse) Validate() error

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

func (m *CountUserResponse) ValidateAll() error

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

type CountUserResponseMultiError

type CountUserResponseMultiError []error

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

func (CountUserResponseMultiError) AllErrors

func (m CountUserResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CountUserResponseMultiError) Error

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

type CountUserResponseValidationError

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

CountUserResponseValidationError is the validation error returned by CountUserResponse.Validate if the designated constraints aren't met.

func (CountUserResponseValidationError) Cause

Cause function returns cause value.

func (CountUserResponseValidationError) Error

Error satisfies the builtin error interface

func (CountUserResponseValidationError) ErrorName

ErrorName returns error name.

func (CountUserResponseValidationError) Field

Field function returns field value.

func (CountUserResponseValidationError) Key

Key function returns key value.

func (CountUserResponseValidationError) Reason

Reason function returns reason value.

type CreateAccountByMobileRequest

type CreateAccountByMobileRequest struct {
	RegionCode string `protobuf:"bytes,1,opt,name=RegionCode,proto3" json:"RegionCode"` // 区域码
	Mobile     string `protobuf:"bytes,2,opt,name=Mobile,proto3" json:"Mobile"`         // 手机号
	// contains filtered or unexported fields
}

func (*CreateAccountByMobileRequest) Descriptor deprecated

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

Deprecated: Use CreateAccountByMobileRequest.ProtoReflect.Descriptor instead.

func (*CreateAccountByMobileRequest) GetMobile

func (x *CreateAccountByMobileRequest) GetMobile() string

func (*CreateAccountByMobileRequest) GetRegionCode

func (x *CreateAccountByMobileRequest) GetRegionCode() string

func (*CreateAccountByMobileRequest) ProtoMessage

func (*CreateAccountByMobileRequest) ProtoMessage()

func (*CreateAccountByMobileRequest) ProtoReflect

func (*CreateAccountByMobileRequest) Reset

func (x *CreateAccountByMobileRequest) Reset()

func (*CreateAccountByMobileRequest) String

func (*CreateAccountByMobileRequest) Validate

func (m *CreateAccountByMobileRequest) Validate() error

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

func (m *CreateAccountByMobileRequest) ValidateAll() error

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

type CreateAccountByMobileRequestMultiError

type CreateAccountByMobileRequestMultiError []error

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

func (CreateAccountByMobileRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (CreateAccountByMobileRequestMultiError) Error

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

type CreateAccountByMobileRequestValidationError

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

CreateAccountByMobileRequestValidationError is the validation error returned by CreateAccountByMobileRequest.Validate if the designated constraints aren't met.

func (CreateAccountByMobileRequestValidationError) Cause

Cause function returns cause value.

func (CreateAccountByMobileRequestValidationError) Error

Error satisfies the builtin error interface

func (CreateAccountByMobileRequestValidationError) ErrorName

ErrorName returns error name.

func (CreateAccountByMobileRequestValidationError) Field

Field function returns field value.

func (CreateAccountByMobileRequestValidationError) Key

Key function returns key value.

func (CreateAccountByMobileRequestValidationError) Reason

Reason function returns reason value.

type CreateUserByMobileResponse

type CreateUserByMobileResponse struct {
	UserId int64 `protobuf:"varint,1,opt,name=UserId,proto3" json:"UserId"` // 用户ID
	// contains filtered or unexported fields
}

func (*CreateUserByMobileResponse) Descriptor deprecated

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

Deprecated: Use CreateUserByMobileResponse.ProtoReflect.Descriptor instead.

func (*CreateUserByMobileResponse) GetUserId

func (x *CreateUserByMobileResponse) GetUserId() int64

func (*CreateUserByMobileResponse) ProtoMessage

func (*CreateUserByMobileResponse) ProtoMessage()

func (*CreateUserByMobileResponse) ProtoReflect

func (*CreateUserByMobileResponse) Reset

func (x *CreateUserByMobileResponse) Reset()

func (*CreateUserByMobileResponse) String

func (x *CreateUserByMobileResponse) String() string

func (*CreateUserByMobileResponse) Validate

func (m *CreateUserByMobileResponse) Validate() error

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

func (m *CreateUserByMobileResponse) ValidateAll() error

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

type CreateUserByMobileResponseMultiError

type CreateUserByMobileResponseMultiError []error

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

func (CreateUserByMobileResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (CreateUserByMobileResponseMultiError) Error

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

type CreateUserByMobileResponseValidationError

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

CreateUserByMobileResponseValidationError is the validation error returned by CreateUserByMobileResponse.Validate if the designated constraints aren't met.

func (CreateUserByMobileResponseValidationError) Cause

Cause function returns cause value.

func (CreateUserByMobileResponseValidationError) Error

Error satisfies the builtin error interface

func (CreateUserByMobileResponseValidationError) ErrorName

ErrorName returns error name.

func (CreateUserByMobileResponseValidationError) Field

Field function returns field value.

func (CreateUserByMobileResponseValidationError) Key

Key function returns key value.

func (CreateUserByMobileResponseValidationError) Reason

Reason function returns reason value.

type CreateUserRequest

type CreateUserRequest struct {
	Username     string         `protobuf:"bytes,1,opt,name=Username,proto3" json:"Username"`                                 // 用户名字
	Avatar       string         `protobuf:"bytes,2,opt,name=Avatar,proto3" json:"Avatar"`                                     // 头像
	LoginIp      string         `protobuf:"bytes,3,opt,name=LoginIp,proto3" json:"LoginIp"`                                   // 用户当前ip
	LoginCountry string         `protobuf:"bytes,4,opt,name=LoginCountry,proto3" json:"LoginCountry"`                         //当前用户国家 code
	PublicParams *PublicParams  `protobuf:"bytes,5,opt,name=PublicParams,proto3" json:"PublicParams"`                         // 公共参数
	Channel      TripartitePlat `protobuf:"varint,6,opt,name=channel,proto3,enum=user.ucenter.TripartitePlat" json:"channel"` // 渠道
	Unionid      string         `protobuf:"bytes,7,opt,name=Unionid,proto3" json:"Unionid"`                                   // 应用下的用户唯一标示
	// contains filtered or unexported fields
}

func (*CreateUserRequest) Descriptor deprecated

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

Deprecated: Use CreateUserRequest.ProtoReflect.Descriptor instead.

func (*CreateUserRequest) GetAvatar

func (x *CreateUserRequest) GetAvatar() string

func (*CreateUserRequest) GetChannel

func (x *CreateUserRequest) GetChannel() TripartitePlat

func (*CreateUserRequest) GetLoginCountry

func (x *CreateUserRequest) GetLoginCountry() string

func (*CreateUserRequest) GetLoginIp

func (x *CreateUserRequest) GetLoginIp() string

func (*CreateUserRequest) GetPublicParams

func (x *CreateUserRequest) GetPublicParams() *PublicParams

func (*CreateUserRequest) GetUnionid

func (x *CreateUserRequest) GetUnionid() string

func (*CreateUserRequest) GetUsername

func (x *CreateUserRequest) GetUsername() string

func (*CreateUserRequest) ProtoMessage

func (*CreateUserRequest) ProtoMessage()

func (*CreateUserRequest) ProtoReflect

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

func (*CreateUserRequest) Reset

func (x *CreateUserRequest) Reset()

func (*CreateUserRequest) String

func (x *CreateUserRequest) String() string

func (*CreateUserRequest) Validate

func (m *CreateUserRequest) Validate() error

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

func (m *CreateUserRequest) ValidateAll() error

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

type CreateUserRequestMultiError

type CreateUserRequestMultiError []error

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

func (CreateUserRequestMultiError) AllErrors

func (m CreateUserRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateUserRequestMultiError) Error

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

type CreateUserRequestValidationError

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

CreateUserRequestValidationError is the validation error returned by CreateUserRequest.Validate if the designated constraints aren't met.

func (CreateUserRequestValidationError) Cause

Cause function returns cause value.

func (CreateUserRequestValidationError) Error

Error satisfies the builtin error interface

func (CreateUserRequestValidationError) ErrorName

ErrorName returns error name.

func (CreateUserRequestValidationError) Field

Field function returns field value.

func (CreateUserRequestValidationError) Key

Key function returns key value.

func (CreateUserRequestValidationError) Reason

Reason function returns reason value.

type DelAssistantUserRequest

type DelAssistantUserRequest struct {
	ShowId int64 `protobuf:"varint,3,opt,name=ShowId,proto3" json:"ShowId"`
	// contains filtered or unexported fields
}

func (*DelAssistantUserRequest) Descriptor deprecated

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

Deprecated: Use DelAssistantUserRequest.ProtoReflect.Descriptor instead.

func (*DelAssistantUserRequest) GetShowId

func (x *DelAssistantUserRequest) GetShowId() int64

func (*DelAssistantUserRequest) ProtoMessage

func (*DelAssistantUserRequest) ProtoMessage()

func (*DelAssistantUserRequest) ProtoReflect

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

func (*DelAssistantUserRequest) Reset

func (x *DelAssistantUserRequest) Reset()

func (*DelAssistantUserRequest) String

func (x *DelAssistantUserRequest) String() string

func (*DelAssistantUserRequest) Validate

func (m *DelAssistantUserRequest) Validate() error

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

func (m *DelAssistantUserRequest) ValidateAll() error

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

type DelAssistantUserRequestMultiError

type DelAssistantUserRequestMultiError []error

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

func (DelAssistantUserRequestMultiError) AllErrors

func (m DelAssistantUserRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DelAssistantUserRequestMultiError) Error

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

type DelAssistantUserRequestValidationError

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

DelAssistantUserRequestValidationError is the validation error returned by DelAssistantUserRequest.Validate if the designated constraints aren't met.

func (DelAssistantUserRequestValidationError) Cause

Cause function returns cause value.

func (DelAssistantUserRequestValidationError) Error

Error satisfies the builtin error interface

func (DelAssistantUserRequestValidationError) ErrorName

ErrorName returns error name.

func (DelAssistantUserRequestValidationError) Field

Field function returns field value.

func (DelAssistantUserRequestValidationError) Key

Key function returns key value.

func (DelAssistantUserRequestValidationError) Reason

Reason function returns reason value.

type GetAddressResponse

type GetAddressResponse struct {
	CityCode     string `protobuf:"bytes,1,opt,name=CityCode,proto3" json:"CityCode"`         // 市地区划分编码
	ProvinceCode string `protobuf:"bytes,2,opt,name=ProvinceCode,proto3" json:"ProvinceCode"` // 省地区划分编码
	// contains filtered or unexported fields
}

func (*GetAddressResponse) Descriptor deprecated

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

Deprecated: Use GetAddressResponse.ProtoReflect.Descriptor instead.

func (*GetAddressResponse) GetCityCode

func (x *GetAddressResponse) GetCityCode() string

func (*GetAddressResponse) GetProvinceCode

func (x *GetAddressResponse) GetProvinceCode() string

func (*GetAddressResponse) ProtoMessage

func (*GetAddressResponse) ProtoMessage()

func (*GetAddressResponse) ProtoReflect

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

func (*GetAddressResponse) Reset

func (x *GetAddressResponse) Reset()

func (*GetAddressResponse) String

func (x *GetAddressResponse) String() string

func (*GetAddressResponse) Validate

func (m *GetAddressResponse) Validate() error

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

func (m *GetAddressResponse) ValidateAll() error

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

type GetAddressResponseMultiError

type GetAddressResponseMultiError []error

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

func (GetAddressResponseMultiError) AllErrors

func (m GetAddressResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetAddressResponseMultiError) Error

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

type GetAddressResponseValidationError

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

GetAddressResponseValidationError is the validation error returned by GetAddressResponse.Validate if the designated constraints aren't met.

func (GetAddressResponseValidationError) Cause

Cause function returns cause value.

func (GetAddressResponseValidationError) Error

Error satisfies the builtin error interface

func (GetAddressResponseValidationError) ErrorName

ErrorName returns error name.

func (GetAddressResponseValidationError) Field

Field function returns field value.

func (GetAddressResponseValidationError) Key

Key function returns key value.

func (GetAddressResponseValidationError) Reason

Reason function returns reason value.

type GetAssistantUserRequest

type GetAssistantUserRequest struct {
	ShowId int64 `protobuf:"varint,1,opt,name=ShowId,proto3" json:"ShowId"`
	// contains filtered or unexported fields
}

func (*GetAssistantUserRequest) Descriptor deprecated

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

Deprecated: Use GetAssistantUserRequest.ProtoReflect.Descriptor instead.

func (*GetAssistantUserRequest) GetShowId

func (x *GetAssistantUserRequest) GetShowId() int64

func (*GetAssistantUserRequest) ProtoMessage

func (*GetAssistantUserRequest) ProtoMessage()

func (*GetAssistantUserRequest) ProtoReflect

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

func (*GetAssistantUserRequest) Reset

func (x *GetAssistantUserRequest) Reset()

func (*GetAssistantUserRequest) String

func (x *GetAssistantUserRequest) String() string

func (*GetAssistantUserRequest) Validate

func (m *GetAssistantUserRequest) Validate() error

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

func (m *GetAssistantUserRequest) ValidateAll() error

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

type GetAssistantUserRequestMultiError

type GetAssistantUserRequestMultiError []error

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

func (GetAssistantUserRequestMultiError) AllErrors

func (m GetAssistantUserRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetAssistantUserRequestMultiError) Error

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

type GetAssistantUserRequestValidationError

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

GetAssistantUserRequestValidationError is the validation error returned by GetAssistantUserRequest.Validate if the designated constraints aren't met.

func (GetAssistantUserRequestValidationError) Cause

Cause function returns cause value.

func (GetAssistantUserRequestValidationError) Error

Error satisfies the builtin error interface

func (GetAssistantUserRequestValidationError) ErrorName

ErrorName returns error name.

func (GetAssistantUserRequestValidationError) Field

Field function returns field value.

func (GetAssistantUserRequestValidationError) Key

Key function returns key value.

func (GetAssistantUserRequestValidationError) Reason

Reason function returns reason value.

type GetAssistantUserResponse

type GetAssistantUserResponse struct {
	Item *AssistantUserItem `protobuf:"bytes,1,opt,name=Item,proto3" json:"Item"`
	// contains filtered or unexported fields
}

func (*GetAssistantUserResponse) Descriptor deprecated

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

Deprecated: Use GetAssistantUserResponse.ProtoReflect.Descriptor instead.

func (*GetAssistantUserResponse) GetItem

func (*GetAssistantUserResponse) ProtoMessage

func (*GetAssistantUserResponse) ProtoMessage()

func (*GetAssistantUserResponse) ProtoReflect

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

func (*GetAssistantUserResponse) Reset

func (x *GetAssistantUserResponse) Reset()

func (*GetAssistantUserResponse) String

func (x *GetAssistantUserResponse) String() string

func (*GetAssistantUserResponse) Validate

func (m *GetAssistantUserResponse) Validate() error

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

func (m *GetAssistantUserResponse) ValidateAll() error

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

type GetAssistantUserResponseMultiError

type GetAssistantUserResponseMultiError []error

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

func (GetAssistantUserResponseMultiError) AllErrors

func (m GetAssistantUserResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetAssistantUserResponseMultiError) Error

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

type GetAssistantUserResponseValidationError

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

GetAssistantUserResponseValidationError is the validation error returned by GetAssistantUserResponse.Validate if the designated constraints aren't met.

func (GetAssistantUserResponseValidationError) Cause

Cause function returns cause value.

func (GetAssistantUserResponseValidationError) Error

Error satisfies the builtin error interface

func (GetAssistantUserResponseValidationError) ErrorName

ErrorName returns error name.

func (GetAssistantUserResponseValidationError) Field

Field function returns field value.

func (GetAssistantUserResponseValidationError) Key

Key function returns key value.

func (GetAssistantUserResponseValidationError) Reason

Reason function returns reason value.

type GetAssistantUsersRequest

type GetAssistantUsersRequest struct {
	Page   int32 `protobuf:"varint,1,opt,name=Page,proto3" json:"Page"`
	Size   int32 `protobuf:"varint,2,opt,name=Size,proto3" json:"Size"`
	ShowId int64 `protobuf:"varint,3,opt,name=ShowId,proto3" json:"ShowId"`
	// contains filtered or unexported fields
}

func (*GetAssistantUsersRequest) Descriptor deprecated

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

Deprecated: Use GetAssistantUsersRequest.ProtoReflect.Descriptor instead.

func (*GetAssistantUsersRequest) GetPage

func (x *GetAssistantUsersRequest) GetPage() int32

func (*GetAssistantUsersRequest) GetShowId

func (x *GetAssistantUsersRequest) GetShowId() int64

func (*GetAssistantUsersRequest) GetSize

func (x *GetAssistantUsersRequest) GetSize() int32

func (*GetAssistantUsersRequest) ProtoMessage

func (*GetAssistantUsersRequest) ProtoMessage()

func (*GetAssistantUsersRequest) ProtoReflect

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

func (*GetAssistantUsersRequest) Reset

func (x *GetAssistantUsersRequest) Reset()

func (*GetAssistantUsersRequest) String

func (x *GetAssistantUsersRequest) String() string

func (*GetAssistantUsersRequest) Validate

func (m *GetAssistantUsersRequest) Validate() error

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

func (m *GetAssistantUsersRequest) ValidateAll() error

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

type GetAssistantUsersRequestMultiError

type GetAssistantUsersRequestMultiError []error

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

func (GetAssistantUsersRequestMultiError) AllErrors

func (m GetAssistantUsersRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetAssistantUsersRequestMultiError) Error

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

type GetAssistantUsersRequestValidationError

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

GetAssistantUsersRequestValidationError is the validation error returned by GetAssistantUsersRequest.Validate if the designated constraints aren't met.

func (GetAssistantUsersRequestValidationError) Cause

Cause function returns cause value.

func (GetAssistantUsersRequestValidationError) Error

Error satisfies the builtin error interface

func (GetAssistantUsersRequestValidationError) ErrorName

ErrorName returns error name.

func (GetAssistantUsersRequestValidationError) Field

Field function returns field value.

func (GetAssistantUsersRequestValidationError) Key

Key function returns key value.

func (GetAssistantUsersRequestValidationError) Reason

Reason function returns reason value.

type GetAssistantUsersResponse

type GetAssistantUsersResponse struct {
	Page  int32                `protobuf:"varint,1,opt,name=Page,proto3" json:"Page"`
	Size  int32                `protobuf:"varint,2,opt,name=Size,proto3" json:"Size"`
	Total int32                `protobuf:"varint,3,opt,name=Total,proto3" json:"Total"`
	List  []*AssistantUserItem `protobuf:"bytes,4,rep,name=List,proto3" json:"List"`
	// contains filtered or unexported fields
}

func (*GetAssistantUsersResponse) Descriptor deprecated

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

Deprecated: Use GetAssistantUsersResponse.ProtoReflect.Descriptor instead.

func (*GetAssistantUsersResponse) GetList

func (*GetAssistantUsersResponse) GetPage

func (x *GetAssistantUsersResponse) GetPage() int32

func (*GetAssistantUsersResponse) GetSize

func (x *GetAssistantUsersResponse) GetSize() int32

func (*GetAssistantUsersResponse) GetTotal

func (x *GetAssistantUsersResponse) GetTotal() int32

func (*GetAssistantUsersResponse) ProtoMessage

func (*GetAssistantUsersResponse) ProtoMessage()

func (*GetAssistantUsersResponse) ProtoReflect

func (*GetAssistantUsersResponse) Reset

func (x *GetAssistantUsersResponse) Reset()

func (*GetAssistantUsersResponse) String

func (x *GetAssistantUsersResponse) String() string

func (*GetAssistantUsersResponse) Validate

func (m *GetAssistantUsersResponse) Validate() error

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

func (m *GetAssistantUsersResponse) ValidateAll() error

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

type GetAssistantUsersResponseMultiError

type GetAssistantUsersResponseMultiError []error

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

func (GetAssistantUsersResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (GetAssistantUsersResponseMultiError) Error

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

type GetAssistantUsersResponseValidationError

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

GetAssistantUsersResponseValidationError is the validation error returned by GetAssistantUsersResponse.Validate if the designated constraints aren't met.

func (GetAssistantUsersResponseValidationError) Cause

Cause function returns cause value.

func (GetAssistantUsersResponseValidationError) Error

Error satisfies the builtin error interface

func (GetAssistantUsersResponseValidationError) ErrorName

ErrorName returns error name.

func (GetAssistantUsersResponseValidationError) Field

Field function returns field value.

func (GetAssistantUsersResponseValidationError) Key

Key function returns key value.

func (GetAssistantUsersResponseValidationError) Reason

Reason function returns reason value.

type GetImInfoRequest

type GetImInfoRequest struct {
	UserId string `protobuf:"bytes,1,opt,name=UserId,proto3" json:"UserId"` // 用户ID 如果是游客设备信息的摘要
	// contains filtered or unexported fields
}

func (*GetImInfoRequest) Descriptor deprecated

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

Deprecated: Use GetImInfoRequest.ProtoReflect.Descriptor instead.

func (*GetImInfoRequest) GetUserId

func (x *GetImInfoRequest) GetUserId() string

func (*GetImInfoRequest) ProtoMessage

func (*GetImInfoRequest) ProtoMessage()

func (*GetImInfoRequest) ProtoReflect

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

func (*GetImInfoRequest) Reset

func (x *GetImInfoRequest) Reset()

func (*GetImInfoRequest) String

func (x *GetImInfoRequest) String() string

func (*GetImInfoRequest) Validate

func (m *GetImInfoRequest) Validate() error

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

func (m *GetImInfoRequest) ValidateAll() error

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

type GetImInfoRequestMultiError

type GetImInfoRequestMultiError []error

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

func (GetImInfoRequestMultiError) AllErrors

func (m GetImInfoRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetImInfoRequestMultiError) Error

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

type GetImInfoRequestValidationError

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

GetImInfoRequestValidationError is the validation error returned by GetImInfoRequest.Validate if the designated constraints aren't met.

func (GetImInfoRequestValidationError) Cause

Cause function returns cause value.

func (GetImInfoRequestValidationError) Error

Error satisfies the builtin error interface

func (GetImInfoRequestValidationError) ErrorName

ErrorName returns error name.

func (GetImInfoRequestValidationError) Field

Field function returns field value.

func (GetImInfoRequestValidationError) Key

Key function returns key value.

func (GetImInfoRequestValidationError) Reason

Reason function returns reason value.

type GetImInfoResponse

type GetImInfoResponse struct {
	UserId string `protobuf:"bytes,1,opt,name=UserId,proto3" json:"UserId"` // 用户id
	ImSig  string `protobuf:"bytes,2,opt,name=ImSig,proto3" json:"ImSig"`   //im sig
	// contains filtered or unexported fields
}

func (*GetImInfoResponse) Descriptor deprecated

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

Deprecated: Use GetImInfoResponse.ProtoReflect.Descriptor instead.

func (*GetImInfoResponse) GetImSig

func (x *GetImInfoResponse) GetImSig() string

func (*GetImInfoResponse) GetUserId

func (x *GetImInfoResponse) GetUserId() string

func (*GetImInfoResponse) ProtoMessage

func (*GetImInfoResponse) ProtoMessage()

func (*GetImInfoResponse) ProtoReflect

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

func (*GetImInfoResponse) Reset

func (x *GetImInfoResponse) Reset()

func (*GetImInfoResponse) String

func (x *GetImInfoResponse) String() string

func (*GetImInfoResponse) Validate

func (m *GetImInfoResponse) Validate() error

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

func (m *GetImInfoResponse) ValidateAll() error

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

type GetImInfoResponseMultiError

type GetImInfoResponseMultiError []error

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

func (GetImInfoResponseMultiError) AllErrors

func (m GetImInfoResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetImInfoResponseMultiError) Error

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

type GetImInfoResponseValidationError

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

GetImInfoResponseValidationError is the validation error returned by GetImInfoResponse.Validate if the designated constraints aren't met.

func (GetImInfoResponseValidationError) Cause

Cause function returns cause value.

func (GetImInfoResponseValidationError) Error

Error satisfies the builtin error interface

func (GetImInfoResponseValidationError) ErrorName

ErrorName returns error name.

func (GetImInfoResponseValidationError) Field

Field function returns field value.

func (GetImInfoResponseValidationError) Key

Key function returns key value.

func (GetImInfoResponseValidationError) Reason

Reason function returns reason value.

type GetUserListByCountryRequest

type GetUserListByCountryRequest struct {
	Country string `protobuf:"bytes,1,opt,name=Country,proto3" json:"Country"` // 国家
	// contains filtered or unexported fields
}

func (*GetUserListByCountryRequest) Descriptor deprecated

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

Deprecated: Use GetUserListByCountryRequest.ProtoReflect.Descriptor instead.

func (*GetUserListByCountryRequest) GetCountry

func (x *GetUserListByCountryRequest) GetCountry() string

func (*GetUserListByCountryRequest) ProtoMessage

func (*GetUserListByCountryRequest) ProtoMessage()

func (*GetUserListByCountryRequest) ProtoReflect

func (*GetUserListByCountryRequest) Reset

func (x *GetUserListByCountryRequest) Reset()

func (*GetUserListByCountryRequest) String

func (x *GetUserListByCountryRequest) String() string

func (*GetUserListByCountryRequest) Validate

func (m *GetUserListByCountryRequest) Validate() error

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

func (m *GetUserListByCountryRequest) ValidateAll() error

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

type GetUserListByCountryRequestMultiError

type GetUserListByCountryRequestMultiError []error

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

func (GetUserListByCountryRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (GetUserListByCountryRequestMultiError) Error

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

type GetUserListByCountryRequestValidationError

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

GetUserListByCountryRequestValidationError is the validation error returned by GetUserListByCountryRequest.Validate if the designated constraints aren't met.

func (GetUserListByCountryRequestValidationError) Cause

Cause function returns cause value.

func (GetUserListByCountryRequestValidationError) Error

Error satisfies the builtin error interface

func (GetUserListByCountryRequestValidationError) ErrorName

ErrorName returns error name.

func (GetUserListByCountryRequestValidationError) Field

Field function returns field value.

func (GetUserListByCountryRequestValidationError) Key

Key function returns key value.

func (GetUserListByCountryRequestValidationError) Reason

Reason function returns reason value.

type GetUserListByCountryResponse

type GetUserListByCountryResponse struct {
	UserIds []int64 `protobuf:"varint,1,rep,packed,name=UserIds,proto3" json:"UserIds"` // 国家下的机器人id
	// contains filtered or unexported fields
}

func (*GetUserListByCountryResponse) Descriptor deprecated

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

Deprecated: Use GetUserListByCountryResponse.ProtoReflect.Descriptor instead.

func (*GetUserListByCountryResponse) GetUserIds

func (x *GetUserListByCountryResponse) GetUserIds() []int64

func (*GetUserListByCountryResponse) ProtoMessage

func (*GetUserListByCountryResponse) ProtoMessage()

func (*GetUserListByCountryResponse) ProtoReflect

func (*GetUserListByCountryResponse) Reset

func (x *GetUserListByCountryResponse) Reset()

func (*GetUserListByCountryResponse) String

func (*GetUserListByCountryResponse) Validate

func (m *GetUserListByCountryResponse) Validate() error

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

func (m *GetUserListByCountryResponse) ValidateAll() error

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

type GetUserListByCountryResponseMultiError

type GetUserListByCountryResponseMultiError []error

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

func (GetUserListByCountryResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (GetUserListByCountryResponseMultiError) Error

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

type GetUserListByCountryResponseValidationError

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

GetUserListByCountryResponseValidationError is the validation error returned by GetUserListByCountryResponse.Validate if the designated constraints aren't met.

func (GetUserListByCountryResponseValidationError) Cause

Cause function returns cause value.

func (GetUserListByCountryResponseValidationError) Error

Error satisfies the builtin error interface

func (GetUserListByCountryResponseValidationError) ErrorName

ErrorName returns error name.

func (GetUserListByCountryResponseValidationError) Field

Field function returns field value.

func (GetUserListByCountryResponseValidationError) Key

Key function returns key value.

func (GetUserListByCountryResponseValidationError) Reason

Reason function returns reason value.

type GetUserListRequest

type GetUserListRequest struct {
	Page     int64  `protobuf:"varint,1,opt,name=Page,proto3" json:"Page"`
	PageSize int64  `protobuf:"varint,2,opt,name=PageSize,proto3" json:"PageSize"`
	Keyword  string `protobuf:"bytes,3,opt,name=Keyword,proto3" json:"Keyword"` // 搜索关键字
	// contains filtered or unexported fields
}

func (*GetUserListRequest) Descriptor deprecated

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

Deprecated: Use GetUserListRequest.ProtoReflect.Descriptor instead.

func (*GetUserListRequest) GetKeyword

func (x *GetUserListRequest) GetKeyword() string

func (*GetUserListRequest) GetPage

func (x *GetUserListRequest) GetPage() int64

func (*GetUserListRequest) GetPageSize

func (x *GetUserListRequest) GetPageSize() int64

func (*GetUserListRequest) ProtoMessage

func (*GetUserListRequest) ProtoMessage()

func (*GetUserListRequest) ProtoReflect

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

func (*GetUserListRequest) Reset

func (x *GetUserListRequest) Reset()

func (*GetUserListRequest) String

func (x *GetUserListRequest) String() string

func (*GetUserListRequest) Validate

func (m *GetUserListRequest) Validate() error

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

func (m *GetUserListRequest) ValidateAll() error

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

type GetUserListRequestMultiError

type GetUserListRequestMultiError []error

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

func (GetUserListRequestMultiError) AllErrors

func (m GetUserListRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetUserListRequestMultiError) Error

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

type GetUserListRequestValidationError

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

GetUserListRequestValidationError is the validation error returned by GetUserListRequest.Validate if the designated constraints aren't met.

func (GetUserListRequestValidationError) Cause

Cause function returns cause value.

func (GetUserListRequestValidationError) Error

Error satisfies the builtin error interface

func (GetUserListRequestValidationError) ErrorName

ErrorName returns error name.

func (GetUserListRequestValidationError) Field

Field function returns field value.

func (GetUserListRequestValidationError) Key

Key function returns key value.

func (GetUserListRequestValidationError) Reason

Reason function returns reason value.

type GetUserListResponse

type GetUserListResponse struct {
	List     []*Item `protobuf:"bytes,1,rep,name=List,proto3" json:"List"`
	Page     int64   `protobuf:"varint,2,opt,name=Page,proto3" json:"Page"`
	PageSize int64   `protobuf:"varint,3,opt,name=PageSize,proto3" json:"PageSize"`
	Total    int64   `protobuf:"varint,4,opt,name=Total,proto3" json:"Total"`
	// contains filtered or unexported fields
}

func (*GetUserListResponse) Descriptor deprecated

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

Deprecated: Use GetUserListResponse.ProtoReflect.Descriptor instead.

func (*GetUserListResponse) GetList

func (x *GetUserListResponse) GetList() []*Item

func (*GetUserListResponse) GetPage

func (x *GetUserListResponse) GetPage() int64

func (*GetUserListResponse) GetPageSize

func (x *GetUserListResponse) GetPageSize() int64

func (*GetUserListResponse) GetTotal

func (x *GetUserListResponse) GetTotal() int64

func (*GetUserListResponse) ProtoMessage

func (*GetUserListResponse) ProtoMessage()

func (*GetUserListResponse) ProtoReflect

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

func (*GetUserListResponse) Reset

func (x *GetUserListResponse) Reset()

func (*GetUserListResponse) String

func (x *GetUserListResponse) String() string

func (*GetUserListResponse) Validate

func (m *GetUserListResponse) Validate() error

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

func (m *GetUserListResponse) ValidateAll() error

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

type GetUserListResponseMultiError

type GetUserListResponseMultiError []error

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

func (GetUserListResponseMultiError) AllErrors

func (m GetUserListResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetUserListResponseMultiError) Error

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

type GetUserListResponseValidationError

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

GetUserListResponseValidationError is the validation error returned by GetUserListResponse.Validate if the designated constraints aren't met.

func (GetUserListResponseValidationError) Cause

Cause function returns cause value.

func (GetUserListResponseValidationError) Error

Error satisfies the builtin error interface

func (GetUserListResponseValidationError) ErrorName

ErrorName returns error name.

func (GetUserListResponseValidationError) Field

Field function returns field value.

func (GetUserListResponseValidationError) Key

Key function returns key value.

func (GetUserListResponseValidationError) Reason

Reason function returns reason value.

type GuestBindAccountRequest

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

func (*GuestBindAccountRequest) Descriptor deprecated

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

Deprecated: Use GuestBindAccountRequest.ProtoReflect.Descriptor instead.

func (*GuestBindAccountRequest) GetSearchDate

func (x *GuestBindAccountRequest) GetSearchDate() string

func (*GuestBindAccountRequest) ProtoMessage

func (*GuestBindAccountRequest) ProtoMessage()

func (*GuestBindAccountRequest) ProtoReflect

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

func (*GuestBindAccountRequest) Reset

func (x *GuestBindAccountRequest) Reset()

func (*GuestBindAccountRequest) String

func (x *GuestBindAccountRequest) String() string

func (*GuestBindAccountRequest) Validate

func (m *GuestBindAccountRequest) Validate() error

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

func (m *GuestBindAccountRequest) ValidateAll() error

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

type GuestBindAccountRequestMultiError

type GuestBindAccountRequestMultiError []error

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

func (GuestBindAccountRequestMultiError) AllErrors

func (m GuestBindAccountRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GuestBindAccountRequestMultiError) Error

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

type GuestBindAccountRequestValidationError

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

GuestBindAccountRequestValidationError is the validation error returned by GuestBindAccountRequest.Validate if the designated constraints aren't met.

func (GuestBindAccountRequestValidationError) Cause

Cause function returns cause value.

func (GuestBindAccountRequestValidationError) Error

Error satisfies the builtin error interface

func (GuestBindAccountRequestValidationError) ErrorName

ErrorName returns error name.

func (GuestBindAccountRequestValidationError) Field

Field function returns field value.

func (GuestBindAccountRequestValidationError) Key

Key function returns key value.

func (GuestBindAccountRequestValidationError) Reason

Reason function returns reason value.

type GuestBindAccountResponse

type GuestBindAccountResponse struct {
	Counts map[int32]int32 `` /* 145-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GuestBindAccountResponse) Descriptor deprecated

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

Deprecated: Use GuestBindAccountResponse.ProtoReflect.Descriptor instead.

func (*GuestBindAccountResponse) GetCounts

func (x *GuestBindAccountResponse) GetCounts() map[int32]int32

func (*GuestBindAccountResponse) ProtoMessage

func (*GuestBindAccountResponse) ProtoMessage()

func (*GuestBindAccountResponse) ProtoReflect

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

func (*GuestBindAccountResponse) Reset

func (x *GuestBindAccountResponse) Reset()

func (*GuestBindAccountResponse) String

func (x *GuestBindAccountResponse) String() string

func (*GuestBindAccountResponse) Validate

func (m *GuestBindAccountResponse) Validate() error

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

func (m *GuestBindAccountResponse) ValidateAll() error

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

type GuestBindAccountResponseMultiError

type GuestBindAccountResponseMultiError []error

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

func (GuestBindAccountResponseMultiError) AllErrors

func (m GuestBindAccountResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GuestBindAccountResponseMultiError) Error

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

type GuestBindAccountResponseValidationError

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

GuestBindAccountResponseValidationError is the validation error returned by GuestBindAccountResponse.Validate if the designated constraints aren't met.

func (GuestBindAccountResponseValidationError) Cause

Cause function returns cause value.

func (GuestBindAccountResponseValidationError) Error

Error satisfies the builtin error interface

func (GuestBindAccountResponseValidationError) ErrorName

ErrorName returns error name.

func (GuestBindAccountResponseValidationError) Field

Field function returns field value.

func (GuestBindAccountResponseValidationError) Key

Key function returns key value.

func (GuestBindAccountResponseValidationError) Reason

Reason function returns reason value.

type GuestItem

type GuestItem struct {
	RegisterTime     string `protobuf:"bytes,1,opt,name=RegisterTime,proto3" json:"RegisterTime"`         // 注册时间
	Status           int32  `protobuf:"varint,2,opt,name=Status,proto3" json:"Status"`                    // 0:正常 1:禁用
	ShowId           int64  `protobuf:"varint,3,opt,name=ShowId,proto3" json:"ShowId"`                    // 显示ID
	UserId           int64  `protobuf:"varint,5,opt,name=UserId,proto3" json:"UserId"`                    // 用户id
	Nickname         string `protobuf:"bytes,6,opt,name=Nickname,proto3" json:"Nickname"`                 // 用户昵称
	LoginIp          string `protobuf:"bytes,7,opt,name=LoginIp,proto3" json:"LoginIp"`                   // 设备token
	LoginFingerprint string `protobuf:"bytes,8,opt,name=LoginFingerprint,proto3" json:"LoginFingerprint"` // 登录人指纹
	LoginCountry     string `protobuf:"bytes,9,opt,name=LoginCountry,proto3" json:"LoginCountry"`         // 登录者国家
	DeviceToken      string `protobuf:"bytes,10,opt,name=DeviceToken,proto3" json:"DeviceToken"`          // 设备token
	Role             string `protobuf:"bytes,11,opt,name=Role,proto3" json:"Role"`                        // 用户角色 user、guest
	Avatar           string `protobuf:"bytes,12,opt,name=Avatar,proto3" json:"Avatar"`                    //游客默认头像
	UserLevel        int32  `protobuf:"varint,13,opt,name=UserLevel,proto3" json:"UserLevel"`             // 游客默认0
	AnchorLevel      int32  `protobuf:"varint,14,opt,name=AnchorLevel,proto3" json:"AnchorLevel"`         // 游客主播默认0
	// contains filtered or unexported fields
}

func (*GuestItem) Descriptor deprecated

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

Deprecated: Use GuestItem.ProtoReflect.Descriptor instead.

func (*GuestItem) GetAnchorLevel

func (x *GuestItem) GetAnchorLevel() int32

func (*GuestItem) GetAvatar

func (x *GuestItem) GetAvatar() string

func (*GuestItem) GetDeviceToken

func (x *GuestItem) GetDeviceToken() string

func (*GuestItem) GetLoginCountry

func (x *GuestItem) GetLoginCountry() string

func (*GuestItem) GetLoginFingerprint

func (x *GuestItem) GetLoginFingerprint() string

func (*GuestItem) GetLoginIp

func (x *GuestItem) GetLoginIp() string

func (*GuestItem) GetNickname

func (x *GuestItem) GetNickname() string

func (*GuestItem) GetRegisterTime

func (x *GuestItem) GetRegisterTime() string

func (*GuestItem) GetRole

func (x *GuestItem) GetRole() string

func (*GuestItem) GetShowId

func (x *GuestItem) GetShowId() int64

func (*GuestItem) GetStatus

func (x *GuestItem) GetStatus() int32

func (*GuestItem) GetUserId

func (x *GuestItem) GetUserId() int64

func (*GuestItem) GetUserLevel

func (x *GuestItem) GetUserLevel() int32

func (*GuestItem) ProtoMessage

func (*GuestItem) ProtoMessage()

func (*GuestItem) ProtoReflect

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

func (*GuestItem) Reset

func (x *GuestItem) Reset()

func (*GuestItem) String

func (x *GuestItem) String() string

func (*GuestItem) Validate

func (m *GuestItem) Validate() error

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

func (m *GuestItem) ValidateAll() error

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

type GuestItemMultiError

type GuestItemMultiError []error

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

func (GuestItemMultiError) AllErrors

func (m GuestItemMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GuestItemMultiError) Error

func (m GuestItemMultiError) Error() string

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

type GuestItemValidationError

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

GuestItemValidationError is the validation error returned by GuestItem.Validate if the designated constraints aren't met.

func (GuestItemValidationError) Cause

func (e GuestItemValidationError) Cause() error

Cause function returns cause value.

func (GuestItemValidationError) Error

func (e GuestItemValidationError) Error() string

Error satisfies the builtin error interface

func (GuestItemValidationError) ErrorName

func (e GuestItemValidationError) ErrorName() string

ErrorName returns error name.

func (GuestItemValidationError) Field

func (e GuestItemValidationError) Field() string

Field function returns field value.

func (GuestItemValidationError) Key

Key function returns key value.

func (GuestItemValidationError) Reason

func (e GuestItemValidationError) Reason() string

Reason function returns reason value.

type GuestRegisterRangeTimeRequest

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

func (*GuestRegisterRangeTimeRequest) Descriptor deprecated

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

Deprecated: Use GuestRegisterRangeTimeRequest.ProtoReflect.Descriptor instead.

func (*GuestRegisterRangeTimeRequest) GetSearchDate

func (x *GuestRegisterRangeTimeRequest) GetSearchDate() string

func (*GuestRegisterRangeTimeRequest) ProtoMessage

func (*GuestRegisterRangeTimeRequest) ProtoMessage()

func (*GuestRegisterRangeTimeRequest) ProtoReflect

func (*GuestRegisterRangeTimeRequest) Reset

func (x *GuestRegisterRangeTimeRequest) Reset()

func (*GuestRegisterRangeTimeRequest) String

func (*GuestRegisterRangeTimeRequest) Validate

func (m *GuestRegisterRangeTimeRequest) Validate() error

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

func (m *GuestRegisterRangeTimeRequest) ValidateAll() error

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

type GuestRegisterRangeTimeRequestMultiError

type GuestRegisterRangeTimeRequestMultiError []error

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

func (GuestRegisterRangeTimeRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (GuestRegisterRangeTimeRequestMultiError) Error

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

type GuestRegisterRangeTimeRequestValidationError

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

GuestRegisterRangeTimeRequestValidationError is the validation error returned by GuestRegisterRangeTimeRequest.Validate if the designated constraints aren't met.

func (GuestRegisterRangeTimeRequestValidationError) Cause

Cause function returns cause value.

func (GuestRegisterRangeTimeRequestValidationError) Error

Error satisfies the builtin error interface

func (GuestRegisterRangeTimeRequestValidationError) ErrorName

ErrorName returns error name.

func (GuestRegisterRangeTimeRequestValidationError) Field

Field function returns field value.

func (GuestRegisterRangeTimeRequestValidationError) Key

Key function returns key value.

func (GuestRegisterRangeTimeRequestValidationError) Reason

Reason function returns reason value.

type GuestRegisterRangeTimeResponse

type GuestRegisterRangeTimeResponse struct {
	Counts map[int32]int32 `` /* 145-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GuestRegisterRangeTimeResponse) Descriptor deprecated

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

Deprecated: Use GuestRegisterRangeTimeResponse.ProtoReflect.Descriptor instead.

func (*GuestRegisterRangeTimeResponse) GetCounts

func (x *GuestRegisterRangeTimeResponse) GetCounts() map[int32]int32

func (*GuestRegisterRangeTimeResponse) ProtoMessage

func (*GuestRegisterRangeTimeResponse) ProtoMessage()

func (*GuestRegisterRangeTimeResponse) ProtoReflect

func (*GuestRegisterRangeTimeResponse) Reset

func (x *GuestRegisterRangeTimeResponse) Reset()

func (*GuestRegisterRangeTimeResponse) String

func (*GuestRegisterRangeTimeResponse) Validate

func (m *GuestRegisterRangeTimeResponse) Validate() error

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

func (m *GuestRegisterRangeTimeResponse) ValidateAll() error

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

type GuestRegisterRangeTimeResponseMultiError

type GuestRegisterRangeTimeResponseMultiError []error

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

func (GuestRegisterRangeTimeResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (GuestRegisterRangeTimeResponseMultiError) Error

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

type GuestRegisterRangeTimeResponseValidationError

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

GuestRegisterRangeTimeResponseValidationError is the validation error returned by GuestRegisterRangeTimeResponse.Validate if the designated constraints aren't met.

func (GuestRegisterRangeTimeResponseValidationError) Cause

Cause function returns cause value.

func (GuestRegisterRangeTimeResponseValidationError) Error

Error satisfies the builtin error interface

func (GuestRegisterRangeTimeResponseValidationError) ErrorName

ErrorName returns error name.

func (GuestRegisterRangeTimeResponseValidationError) Field

Field function returns field value.

func (GuestRegisterRangeTimeResponseValidationError) Key

Key function returns key value.

func (GuestRegisterRangeTimeResponseValidationError) Reason

Reason function returns reason value.

type GuestRequest

type GuestRequest struct {
	UserId                   int64  `protobuf:"varint,1,opt,name=UserId,proto3" json:"UserId"`                                    // 用户ID
	CreatedDeviceFingerprint string `protobuf:"bytes,2,opt,name=CreatedDeviceFingerprint,proto3" json:"CreatedDeviceFingerprint"` // 用户指纹
	// contains filtered or unexported fields
}

func (*GuestRequest) Descriptor deprecated

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

Deprecated: Use GuestRequest.ProtoReflect.Descriptor instead.

func (*GuestRequest) GetCreatedDeviceFingerprint

func (x *GuestRequest) GetCreatedDeviceFingerprint() string

func (*GuestRequest) GetUserId

func (x *GuestRequest) GetUserId() int64

func (*GuestRequest) ProtoMessage

func (*GuestRequest) ProtoMessage()

func (*GuestRequest) ProtoReflect

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

func (*GuestRequest) Reset

func (x *GuestRequest) Reset()

func (*GuestRequest) String

func (x *GuestRequest) String() string

func (*GuestRequest) Validate

func (m *GuestRequest) Validate() error

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

func (m *GuestRequest) ValidateAll() error

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

type GuestRequestMultiError

type GuestRequestMultiError []error

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

func (GuestRequestMultiError) AllErrors

func (m GuestRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GuestRequestMultiError) Error

func (m GuestRequestMultiError) Error() string

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

type GuestRequestValidationError

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

GuestRequestValidationError is the validation error returned by GuestRequest.Validate if the designated constraints aren't met.

func (GuestRequestValidationError) Cause

Cause function returns cause value.

func (GuestRequestValidationError) Error

Error satisfies the builtin error interface

func (GuestRequestValidationError) ErrorName

func (e GuestRequestValidationError) ErrorName() string

ErrorName returns error name.

func (GuestRequestValidationError) Field

Field function returns field value.

func (GuestRequestValidationError) Key

Key function returns key value.

func (GuestRequestValidationError) Reason

Reason function returns reason value.

type GuestResponse

type GuestResponse struct {
	Item *GuestItem `protobuf:"bytes,1,opt,name=Item,proto3" json:"Item"` // 用户基本信息
	// contains filtered or unexported fields
}

func (*GuestResponse) Descriptor deprecated

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

Deprecated: Use GuestResponse.ProtoReflect.Descriptor instead.

func (*GuestResponse) GetItem

func (x *GuestResponse) GetItem() *GuestItem

func (*GuestResponse) ProtoMessage

func (*GuestResponse) ProtoMessage()

func (*GuestResponse) ProtoReflect

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

func (*GuestResponse) Reset

func (x *GuestResponse) Reset()

func (*GuestResponse) String

func (x *GuestResponse) String() string

func (*GuestResponse) Validate

func (m *GuestResponse) Validate() error

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

func (m *GuestResponse) ValidateAll() error

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

type GuestResponseMultiError

type GuestResponseMultiError []error

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

func (GuestResponseMultiError) AllErrors

func (m GuestResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GuestResponseMultiError) Error

func (m GuestResponseMultiError) Error() string

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

type GuestResponseValidationError

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

GuestResponseValidationError is the validation error returned by GuestResponse.Validate if the designated constraints aren't met.

func (GuestResponseValidationError) Cause

Cause function returns cause value.

func (GuestResponseValidationError) Error

Error satisfies the builtin error interface

func (GuestResponseValidationError) ErrorName

func (e GuestResponseValidationError) ErrorName() string

ErrorName returns error name.

func (GuestResponseValidationError) Field

Field function returns field value.

func (GuestResponseValidationError) Key

Key function returns key value.

func (GuestResponseValidationError) Reason

Reason function returns reason value.

type GuestToUserRequest

type GuestToUserRequest struct {
	UserId                   int64  `protobuf:"varint,1,opt,name=UserId,proto3" json:"UserId"`
	CreatedDeviceFingerprint string `protobuf:"bytes,2,opt,name=CreatedDeviceFingerprint,proto3" json:"CreatedDeviceFingerprint"` // 创建游客的指纹
	// contains filtered or unexported fields
}

func (*GuestToUserRequest) Descriptor deprecated

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

Deprecated: Use GuestToUserRequest.ProtoReflect.Descriptor instead.

func (*GuestToUserRequest) GetCreatedDeviceFingerprint

func (x *GuestToUserRequest) GetCreatedDeviceFingerprint() string

func (*GuestToUserRequest) GetUserId

func (x *GuestToUserRequest) GetUserId() int64

func (*GuestToUserRequest) ProtoMessage

func (*GuestToUserRequest) ProtoMessage()

func (*GuestToUserRequest) ProtoReflect

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

func (*GuestToUserRequest) Reset

func (x *GuestToUserRequest) Reset()

func (*GuestToUserRequest) String

func (x *GuestToUserRequest) String() string

func (*GuestToUserRequest) Validate

func (m *GuestToUserRequest) Validate() error

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

func (m *GuestToUserRequest) ValidateAll() error

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

type GuestToUserRequestMultiError

type GuestToUserRequestMultiError []error

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

func (GuestToUserRequestMultiError) AllErrors

func (m GuestToUserRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GuestToUserRequestMultiError) Error

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

type GuestToUserRequestValidationError

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

GuestToUserRequestValidationError is the validation error returned by GuestToUserRequest.Validate if the designated constraints aren't met.

func (GuestToUserRequestValidationError) Cause

Cause function returns cause value.

func (GuestToUserRequestValidationError) Error

Error satisfies the builtin error interface

func (GuestToUserRequestValidationError) ErrorName

ErrorName returns error name.

func (GuestToUserRequestValidationError) Field

Field function returns field value.

func (GuestToUserRequestValidationError) Key

Key function returns key value.

func (GuestToUserRequestValidationError) Reason

Reason function returns reason value.

type Item

type Item struct {
	RegionCode   string `protobuf:"bytes,1,opt,name=RegionCode,proto3" json:"RegionCode"`     // 区域码
	Mobile       string `protobuf:"bytes,2,opt,name=Mobile,proto3" json:"Mobile"`             // 手机号
	RegisterTime string `protobuf:"bytes,3,opt,name=RegisterTime,proto3" json:"RegisterTime"` // 注册时间
	Status       int32  `protobuf:"varint,4,opt,name=Status,proto3" json:"Status"`            // 0:正常 1:禁用
	ShowId       int64  `protobuf:"varint,5,opt,name=ShowId,proto3" json:"ShowId"`            // 显示ID
	Nickname     string `protobuf:"bytes,6,opt,name=Nickname,proto3" json:"Nickname"`         // 昵称
	Gender       int64  `protobuf:"varint,7,opt,name=Gender,proto3" json:"Gender"`            // 性别
	Avatar       string `protobuf:"bytes,8,opt,name=Avatar,proto3" json:"Avatar"`             // 头像地址
	Birthday     string `protobuf:"bytes,9,opt,name=Birthday,proto3" json:"Birthday"`         // 生日日期
	//  string Version = 10; // 注册时用户app版本
	//  int32 Platform = 11; // 设备类型 ios android
	UserId                int64  `protobuf:"varint,16,opt,name=UserId,proto3" json:"UserId"`                               // 用户id
	Username              string `protobuf:"bytes,17,opt,name=Username,proto3" json:"Username"`                            // 用户名字
	Password              string `protobuf:"bytes,19,opt,name=Password,proto3" json:"Password"`                            // 密码
	WriteOffStatus        int32  `protobuf:"varint,21,opt,name=WriteOffStatus,proto3" json:"WriteOffStatus"`               // 注销状态
	WriteOffAt            string `protobuf:"bytes,22,opt,name=WriteOffAt,proto3" json:"WriteOffAt"`                        // 注销时间
	RealCertStatus        int32  `protobuf:"varint,24,opt,name=RealCertStatus,proto3" json:"RealCertStatus"`               // 主播认证状态 0 未认证 1 主播
	LoginIp               string `protobuf:"bytes,25,opt,name=LoginIp,proto3" json:"LoginIp"`                              // 设备token
	LoginFingerprint      string `protobuf:"bytes,26,opt,name=LoginFingerprint,proto3" json:"LoginFingerprint"`            // 登录人指纹
	LoginCountry          string `protobuf:"bytes,27,opt,name=LoginCountry,proto3" json:"LoginCountry"`                    // 登录者国家
	Signature             string `protobuf:"bytes,33,opt,name=Signature,proto3" json:"Signature"`                          // 个性签名
	Role                  string `protobuf:"bytes,34,opt,name=Role,proto3" json:"Role"`                                    // 用户角色 user、guest
	UserLevel             int32  `protobuf:"varint,35,opt,name=UserLevel,proto3" json:"UserLevel"`                         // 用户等级
	AnchorLevel           int32  `protobuf:"varint,37,opt,name=AnchorLevel,proto3" json:"AnchorLevel"`                     // 主播等级
	UserExperience        int64  `protobuf:"varint,38,opt,name=UserExperience,proto3" json:"UserExperience"`               // 用户经验
	AnchorExperience      int64  `protobuf:"varint,39,opt,name=AnchorExperience,proto3" json:"AnchorExperience"`           // 主播经验
	UserLevelExperience   int64  `protobuf:"varint,40,opt,name=UserLevelExperience,proto3" json:"UserLevelExperience"`     // 用户当前等级对应的经验值阶梯
	AnchorLevelExperience int64  `protobuf:"varint,41,opt,name=AnchorLevelExperience,proto3" json:"AnchorLevelExperience"` // 主播当前等级对应的经验值阶梯
	// contains filtered or unexported fields
}

func (*Item) Descriptor deprecated

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

Deprecated: Use Item.ProtoReflect.Descriptor instead.

func (*Item) GetAnchorExperience

func (x *Item) GetAnchorExperience() int64

func (*Item) GetAnchorLevel

func (x *Item) GetAnchorLevel() int32

func (*Item) GetAnchorLevelExperience

func (x *Item) GetAnchorLevelExperience() int64

func (*Item) GetAvatar

func (x *Item) GetAvatar() string

func (*Item) GetBirthday

func (x *Item) GetBirthday() string

func (*Item) GetGender

func (x *Item) GetGender() int64

func (*Item) GetLoginCountry

func (x *Item) GetLoginCountry() string

func (*Item) GetLoginFingerprint

func (x *Item) GetLoginFingerprint() string

func (*Item) GetLoginIp

func (x *Item) GetLoginIp() string

func (*Item) GetMobile

func (x *Item) GetMobile() string

func (*Item) GetNickname

func (x *Item) GetNickname() string

func (*Item) GetPassword

func (x *Item) GetPassword() string

func (*Item) GetRealCertStatus

func (x *Item) GetRealCertStatus() int32

func (*Item) GetRegionCode

func (x *Item) GetRegionCode() string

func (*Item) GetRegisterTime

func (x *Item) GetRegisterTime() string

func (*Item) GetRole

func (x *Item) GetRole() string

func (*Item) GetShowId

func (x *Item) GetShowId() int64

func (*Item) GetSignature

func (x *Item) GetSignature() string

func (*Item) GetStatus

func (x *Item) GetStatus() int32

func (*Item) GetUserExperience

func (x *Item) GetUserExperience() int64

func (*Item) GetUserId

func (x *Item) GetUserId() int64

func (*Item) GetUserLevel

func (x *Item) GetUserLevel() int32

func (*Item) GetUserLevelExperience

func (x *Item) GetUserLevelExperience() int64

func (*Item) GetUsername

func (x *Item) GetUsername() string

func (*Item) GetWriteOffAt

func (x *Item) GetWriteOffAt() string

func (*Item) GetWriteOffStatus

func (x *Item) GetWriteOffStatus() int32

func (*Item) ProtoMessage

func (*Item) ProtoMessage()

func (*Item) ProtoReflect

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

func (*Item) Reset

func (x *Item) Reset()

func (*Item) String

func (x *Item) String() string

func (*Item) Validate

func (m *Item) Validate() error

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

func (m *Item) ValidateAll() error

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

type ItemLevelFans

type ItemLevelFans struct {
	Level int32 `protobuf:"varint,1,opt,name=Level,proto3" json:"Level"`
	Num   int32 `protobuf:"varint,2,opt,name=Num,proto3" json:"Num"`
	// contains filtered or unexported fields
}

func (*ItemLevelFans) Descriptor deprecated

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

Deprecated: Use ItemLevelFans.ProtoReflect.Descriptor instead.

func (*ItemLevelFans) GetLevel

func (x *ItemLevelFans) GetLevel() int32

func (*ItemLevelFans) GetNum

func (x *ItemLevelFans) GetNum() int32

func (*ItemLevelFans) ProtoMessage

func (*ItemLevelFans) ProtoMessage()

func (*ItemLevelFans) ProtoReflect

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

func (*ItemLevelFans) Reset

func (x *ItemLevelFans) Reset()

func (*ItemLevelFans) String

func (x *ItemLevelFans) String() string

func (*ItemLevelFans) Validate

func (m *ItemLevelFans) Validate() error

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

func (m *ItemLevelFans) ValidateAll() error

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

type ItemLevelFansMultiError

type ItemLevelFansMultiError []error

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

func (ItemLevelFansMultiError) AllErrors

func (m ItemLevelFansMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ItemLevelFansMultiError) Error

func (m ItemLevelFansMultiError) Error() string

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

type ItemLevelFansValidationError

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

ItemLevelFansValidationError is the validation error returned by ItemLevelFans.Validate if the designated constraints aren't met.

func (ItemLevelFansValidationError) Cause

Cause function returns cause value.

func (ItemLevelFansValidationError) Error

Error satisfies the builtin error interface

func (ItemLevelFansValidationError) ErrorName

func (e ItemLevelFansValidationError) ErrorName() string

ErrorName returns error name.

func (ItemLevelFansValidationError) Field

Field function returns field value.

func (ItemLevelFansValidationError) Key

Key function returns key value.

func (ItemLevelFansValidationError) Reason

Reason function returns reason value.

type ItemMultiError

type ItemMultiError []error

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

func (ItemMultiError) AllErrors

func (m ItemMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ItemMultiError) Error

func (m ItemMultiError) Error() string

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

type ItemValidationError

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

ItemValidationError is the validation error returned by Item.Validate if the designated constraints aren't met.

func (ItemValidationError) Cause

func (e ItemValidationError) Cause() error

Cause function returns cause value.

func (ItemValidationError) Error

func (e ItemValidationError) Error() string

Error satisfies the builtin error interface

func (ItemValidationError) ErrorName

func (e ItemValidationError) ErrorName() string

ErrorName returns error name.

func (ItemValidationError) Field

func (e ItemValidationError) Field() string

Field function returns field value.

func (ItemValidationError) Key

func (e ItemValidationError) Key() bool

Key function returns key value.

func (ItemValidationError) Reason

func (e ItemValidationError) Reason() string

Reason function returns reason value.

type LoginGuestRequest

type LoginGuestRequest struct {
	LoginIp      string        `protobuf:"bytes,1,opt,name=LoginIp,proto3" json:"LoginIp"`           // 游客ip
	PublicParams *PublicParams `protobuf:"bytes,3,opt,name=PublicParams,proto3" json:"PublicParams"` // 公共参数
	// contains filtered or unexported fields
}

func (*LoginGuestRequest) Descriptor deprecated

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

Deprecated: Use LoginGuestRequest.ProtoReflect.Descriptor instead.

func (*LoginGuestRequest) GetLoginIp

func (x *LoginGuestRequest) GetLoginIp() string

func (*LoginGuestRequest) GetPublicParams

func (x *LoginGuestRequest) GetPublicParams() *PublicParams

func (*LoginGuestRequest) ProtoMessage

func (*LoginGuestRequest) ProtoMessage()

func (*LoginGuestRequest) ProtoReflect

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

func (*LoginGuestRequest) Reset

func (x *LoginGuestRequest) Reset()

func (*LoginGuestRequest) String

func (x *LoginGuestRequest) String() string

func (*LoginGuestRequest) Validate

func (m *LoginGuestRequest) Validate() error

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

func (m *LoginGuestRequest) ValidateAll() error

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

type LoginGuestRequestMultiError

type LoginGuestRequestMultiError []error

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

func (LoginGuestRequestMultiError) AllErrors

func (m LoginGuestRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginGuestRequestMultiError) Error

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

type LoginGuestRequestValidationError

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

LoginGuestRequestValidationError is the validation error returned by LoginGuestRequest.Validate if the designated constraints aren't met.

func (LoginGuestRequestValidationError) Cause

Cause function returns cause value.

func (LoginGuestRequestValidationError) Error

Error satisfies the builtin error interface

func (LoginGuestRequestValidationError) ErrorName

ErrorName returns error name.

func (LoginGuestRequestValidationError) Field

Field function returns field value.

func (LoginGuestRequestValidationError) Key

Key function returns key value.

func (LoginGuestRequestValidationError) Reason

Reason function returns reason value.

type LoginGuestResponse

type LoginGuestResponse struct {
	UserId int64  `protobuf:"varint,1,opt,name=UserId,proto3" json:"UserId"` // 用户ID
	Token  string `protobuf:"bytes,2,opt,name=Token,proto3" json:"Token"`    // token
	// contains filtered or unexported fields
}

func (*LoginGuestResponse) Descriptor deprecated

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

Deprecated: Use LoginGuestResponse.ProtoReflect.Descriptor instead.

func (*LoginGuestResponse) GetToken

func (x *LoginGuestResponse) GetToken() string

func (*LoginGuestResponse) GetUserId

func (x *LoginGuestResponse) GetUserId() int64

func (*LoginGuestResponse) ProtoMessage

func (*LoginGuestResponse) ProtoMessage()

func (*LoginGuestResponse) ProtoReflect

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

func (*LoginGuestResponse) Reset

func (x *LoginGuestResponse) Reset()

func (*LoginGuestResponse) String

func (x *LoginGuestResponse) String() string

func (*LoginGuestResponse) Validate

func (m *LoginGuestResponse) Validate() error

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

func (m *LoginGuestResponse) ValidateAll() error

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

type LoginGuestResponseMultiError

type LoginGuestResponseMultiError []error

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

func (LoginGuestResponseMultiError) AllErrors

func (m LoginGuestResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginGuestResponseMultiError) Error

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

type LoginGuestResponseValidationError

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

LoginGuestResponseValidationError is the validation error returned by LoginGuestResponse.Validate if the designated constraints aren't met.

func (LoginGuestResponseValidationError) Cause

Cause function returns cause value.

func (LoginGuestResponseValidationError) Error

Error satisfies the builtin error interface

func (LoginGuestResponseValidationError) ErrorName

ErrorName returns error name.

func (LoginGuestResponseValidationError) Field

Field function returns field value.

func (LoginGuestResponseValidationError) Key

Key function returns key value.

func (LoginGuestResponseValidationError) Reason

Reason function returns reason value.

type LoginMobilePasswordRequest

type LoginMobilePasswordRequest struct {
	RegionCode   string        `protobuf:"bytes,1,opt,name=RegionCode,proto3" json:"RegionCode"`     // 手机区域码
	Mobile       string        `protobuf:"bytes,2,opt,name=Mobile,proto3" json:"Mobile"`             // 手机号
	Password     string        `protobuf:"bytes,3,opt,name=Password,proto3" json:"Password"`         // 密码
	LoginIp      string        `protobuf:"bytes,4,opt,name=LoginIp,proto3" json:"LoginIp"`           // IP地址
	PublicParams *PublicParams `protobuf:"bytes,5,opt,name=PublicParams,proto3" json:"PublicParams"` // 公共参数
	// contains filtered or unexported fields
}

func (*LoginMobilePasswordRequest) Descriptor deprecated

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

Deprecated: Use LoginMobilePasswordRequest.ProtoReflect.Descriptor instead.

func (*LoginMobilePasswordRequest) GetLoginIp

func (x *LoginMobilePasswordRequest) GetLoginIp() string

func (*LoginMobilePasswordRequest) GetMobile

func (x *LoginMobilePasswordRequest) GetMobile() string

func (*LoginMobilePasswordRequest) GetPassword

func (x *LoginMobilePasswordRequest) GetPassword() string

func (*LoginMobilePasswordRequest) GetPublicParams

func (x *LoginMobilePasswordRequest) GetPublicParams() *PublicParams

func (*LoginMobilePasswordRequest) GetRegionCode

func (x *LoginMobilePasswordRequest) GetRegionCode() string

func (*LoginMobilePasswordRequest) ProtoMessage

func (*LoginMobilePasswordRequest) ProtoMessage()

func (*LoginMobilePasswordRequest) ProtoReflect

func (*LoginMobilePasswordRequest) Reset

func (x *LoginMobilePasswordRequest) Reset()

func (*LoginMobilePasswordRequest) String

func (x *LoginMobilePasswordRequest) String() string

func (*LoginMobilePasswordRequest) Validate

func (m *LoginMobilePasswordRequest) Validate() error

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

func (m *LoginMobilePasswordRequest) ValidateAll() error

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

type LoginMobilePasswordRequestMultiError

type LoginMobilePasswordRequestMultiError []error

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

func (LoginMobilePasswordRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (LoginMobilePasswordRequestMultiError) Error

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

type LoginMobilePasswordRequestValidationError

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

LoginMobilePasswordRequestValidationError is the validation error returned by LoginMobilePasswordRequest.Validate if the designated constraints aren't met.

func (LoginMobilePasswordRequestValidationError) Cause

Cause function returns cause value.

func (LoginMobilePasswordRequestValidationError) Error

Error satisfies the builtin error interface

func (LoginMobilePasswordRequestValidationError) ErrorName

ErrorName returns error name.

func (LoginMobilePasswordRequestValidationError) Field

Field function returns field value.

func (LoginMobilePasswordRequestValidationError) Key

Key function returns key value.

func (LoginMobilePasswordRequestValidationError) Reason

Reason function returns reason value.

type LoginMobileRequest

type LoginMobileRequest struct {
	RegionCode   string        `protobuf:"bytes,1,opt,name=RegionCode,proto3" json:"RegionCode"`     // 手机区域码
	Mobile       string        `protobuf:"bytes,2,opt,name=Mobile,proto3" json:"Mobile"`             // 手机号
	LoginIp      string        `protobuf:"bytes,3,opt,name=LoginIp,proto3" json:"LoginIp"`           // IP地址
	CountryCode  string        `protobuf:"bytes,4,opt,name=CountryCode,proto3" json:"CountryCode"`   // 国家code
	PublicParams *PublicParams `protobuf:"bytes,5,opt,name=PublicParams,proto3" json:"PublicParams"` // 公共参数
	// contains filtered or unexported fields
}

func (*LoginMobileRequest) Descriptor deprecated

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

Deprecated: Use LoginMobileRequest.ProtoReflect.Descriptor instead.

func (*LoginMobileRequest) GetCountryCode

func (x *LoginMobileRequest) GetCountryCode() string

func (*LoginMobileRequest) GetLoginIp

func (x *LoginMobileRequest) GetLoginIp() string

func (*LoginMobileRequest) GetMobile

func (x *LoginMobileRequest) GetMobile() string

func (*LoginMobileRequest) GetPublicParams

func (x *LoginMobileRequest) GetPublicParams() *PublicParams

func (*LoginMobileRequest) GetRegionCode

func (x *LoginMobileRequest) GetRegionCode() string

func (*LoginMobileRequest) ProtoMessage

func (*LoginMobileRequest) ProtoMessage()

func (*LoginMobileRequest) ProtoReflect

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

func (*LoginMobileRequest) Reset

func (x *LoginMobileRequest) Reset()

func (*LoginMobileRequest) String

func (x *LoginMobileRequest) String() string

func (*LoginMobileRequest) Validate

func (m *LoginMobileRequest) Validate() error

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

func (m *LoginMobileRequest) ValidateAll() error

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

type LoginMobileRequestMultiError

type LoginMobileRequestMultiError []error

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

func (LoginMobileRequestMultiError) AllErrors

func (m LoginMobileRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginMobileRequestMultiError) Error

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

type LoginMobileRequestValidationError

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

LoginMobileRequestValidationError is the validation error returned by LoginMobileRequest.Validate if the designated constraints aren't met.

func (LoginMobileRequestValidationError) Cause

Cause function returns cause value.

func (LoginMobileRequestValidationError) Error

Error satisfies the builtin error interface

func (LoginMobileRequestValidationError) ErrorName

ErrorName returns error name.

func (LoginMobileRequestValidationError) Field

Field function returns field value.

func (LoginMobileRequestValidationError) Key

Key function returns key value.

func (LoginMobileRequestValidationError) Reason

Reason function returns reason value.

type LoginRegisterResponse

type LoginRegisterResponse struct {
	UserId     int64  `protobuf:"varint,1,opt,name=UserId,proto3" json:"UserId"`         // 用户ID
	Token      string `protobuf:"bytes,2,opt,name=Token,proto3" json:"Token"`            // token
	IsRegister bool   `protobuf:"varint,3,opt,name=IsRegister,proto3" json:"IsRegister"` // 是否是注册
	IsWriteOff int32  `protobuf:"varint,4,opt,name=IsWriteOff,proto3" json:"IsWriteOff"` // 是否注销
	// contains filtered or unexported fields
}

func (*LoginRegisterResponse) Descriptor deprecated

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

Deprecated: Use LoginRegisterResponse.ProtoReflect.Descriptor instead.

func (*LoginRegisterResponse) GetIsRegister

func (x *LoginRegisterResponse) GetIsRegister() bool

func (*LoginRegisterResponse) GetIsWriteOff

func (x *LoginRegisterResponse) GetIsWriteOff() int32

func (*LoginRegisterResponse) GetToken

func (x *LoginRegisterResponse) GetToken() string

func (*LoginRegisterResponse) GetUserId

func (x *LoginRegisterResponse) GetUserId() int64

func (*LoginRegisterResponse) ProtoMessage

func (*LoginRegisterResponse) ProtoMessage()

func (*LoginRegisterResponse) ProtoReflect

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

func (*LoginRegisterResponse) Reset

func (x *LoginRegisterResponse) Reset()

func (*LoginRegisterResponse) String

func (x *LoginRegisterResponse) String() string

func (*LoginRegisterResponse) Validate

func (m *LoginRegisterResponse) Validate() error

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

func (m *LoginRegisterResponse) ValidateAll() error

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

type LoginRegisterResponseMultiError

type LoginRegisterResponseMultiError []error

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

func (LoginRegisterResponseMultiError) AllErrors

func (m LoginRegisterResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginRegisterResponseMultiError) Error

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

type LoginRegisterResponseValidationError

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

LoginRegisterResponseValidationError is the validation error returned by LoginRegisterResponse.Validate if the designated constraints aren't met.

func (LoginRegisterResponseValidationError) Cause

Cause function returns cause value.

func (LoginRegisterResponseValidationError) Error

Error satisfies the builtin error interface

func (LoginRegisterResponseValidationError) ErrorName

ErrorName returns error name.

func (LoginRegisterResponseValidationError) Field

Field function returns field value.

func (LoginRegisterResponseValidationError) Key

Key function returns key value.

func (LoginRegisterResponseValidationError) Reason

Reason function returns reason value.

type LoginResponse

type LoginResponse struct {
	UserId     int64  `protobuf:"varint,1,opt,name=UserId,proto3" json:"UserId"`         // 用户ID
	Token      string `protobuf:"bytes,2,opt,name=Token,proto3" json:"Token"`            // token
	IsWriteOff int32  `protobuf:"varint,3,opt,name=IsWriteOff,proto3" json:"IsWriteOff"` // 是否注销
	// contains filtered or unexported fields
}

func (*LoginResponse) Descriptor deprecated

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

Deprecated: Use LoginResponse.ProtoReflect.Descriptor instead.

func (*LoginResponse) GetIsWriteOff

func (x *LoginResponse) GetIsWriteOff() int32

func (*LoginResponse) GetToken

func (x *LoginResponse) GetToken() string

func (*LoginResponse) GetUserId

func (x *LoginResponse) GetUserId() int64

func (*LoginResponse) ProtoMessage

func (*LoginResponse) ProtoMessage()

func (*LoginResponse) ProtoReflect

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

func (*LoginResponse) Reset

func (x *LoginResponse) Reset()

func (*LoginResponse) String

func (x *LoginResponse) String() string

func (*LoginResponse) Validate

func (m *LoginResponse) Validate() error

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

func (*LoginResponse) ValidateAll

func (m *LoginResponse) ValidateAll() error

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

type LoginResponseMultiError

type LoginResponseMultiError []error

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

func (LoginResponseMultiError) AllErrors

func (m LoginResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginResponseMultiError) Error

func (m LoginResponseMultiError) Error() string

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

type LoginResponseValidationError

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

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

func (LoginResponseValidationError) Cause

Cause function returns cause value.

func (LoginResponseValidationError) Error

Error satisfies the builtin error interface

func (LoginResponseValidationError) ErrorName

func (e LoginResponseValidationError) ErrorName() string

ErrorName returns error name.

func (LoginResponseValidationError) Field

Field function returns field value.

func (LoginResponseValidationError) Key

Key function returns key value.

func (LoginResponseValidationError) Reason

Reason function returns reason value.

type MultiItems

type MultiItems struct {
	Items map[int64]*Item `` // map<UserId, 详细信息>
	/* 142-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*MultiItems) Descriptor deprecated

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

Deprecated: Use MultiItems.ProtoReflect.Descriptor instead.

func (*MultiItems) GetItems

func (x *MultiItems) GetItems() map[int64]*Item

func (*MultiItems) ProtoMessage

func (*MultiItems) ProtoMessage()

func (*MultiItems) ProtoReflect

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

func (*MultiItems) Reset

func (x *MultiItems) Reset()

func (*MultiItems) String

func (x *MultiItems) String() string

func (*MultiItems) Validate

func (m *MultiItems) Validate() error

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

func (m *MultiItems) ValidateAll() error

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

type MultiItemsMultiError

type MultiItemsMultiError []error

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

func (MultiItemsMultiError) AllErrors

func (m MultiItemsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (MultiItemsMultiError) Error

func (m MultiItemsMultiError) Error() string

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

type MultiItemsValidationError

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

MultiItemsValidationError is the validation error returned by MultiItems.Validate if the designated constraints aren't met.

func (MultiItemsValidationError) Cause

func (e MultiItemsValidationError) Cause() error

Cause function returns cause value.

func (MultiItemsValidationError) Error

Error satisfies the builtin error interface

func (MultiItemsValidationError) ErrorName

func (e MultiItemsValidationError) ErrorName() string

ErrorName returns error name.

func (MultiItemsValidationError) Field

Field function returns field value.

func (MultiItemsValidationError) Key

Key function returns key value.

func (MultiItemsValidationError) Reason

func (e MultiItemsValidationError) Reason() string

Reason function returns reason value.

type Platform

type Platform int32
const (
	Platform_model_un_know Platform = 0 // 未知
	Platform_model_ios     Platform = 1 // ios
	Platform_model_android Platform = 2 // android
)

func (Platform) Descriptor

func (Platform) Descriptor() protoreflect.EnumDescriptor

func (Platform) Enum

func (x Platform) Enum() *Platform

func (Platform) EnumDescriptor deprecated

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

Deprecated: Use Platform.Descriptor instead.

func (Platform) Number

func (x Platform) Number() protoreflect.EnumNumber

func (Platform) String

func (x Platform) String() string

func (Platform) Type

type PublicParams

type PublicParams struct {
	Plat              string `protobuf:"bytes,3,opt,name=Plat,proto3" json:"Plat"`                           // x-pt 软件平台 取值范围:ios,android,ipad,pad,pc,miniprogram
	DeviceFingerprint string `protobuf:"bytes,4,opt,name=DeviceFingerprint,proto3" json:"DeviceFingerprint"` // x-df 设备指纹,该设备的唯一ID
	PackageName       string `protobuf:"bytes,5,opt,name=PackageName,proto3" json:"PackageName"`             // x-pn 应用标识
	OperatingSystem   string `protobuf:"bytes,6,opt,name=OperatingSystem,proto3" json:"OperatingSystem"`     // x-os 操作系统和版本 取值范围:android 5.1,windows 7,ios 11,osx 15
	ClientVersion     string `protobuf:"bytes,7,opt,name=ClientVersion,proto3" json:"ClientVersion"`         // x-cv app版本 1.0.0.1
	ClientLang        string `protobuf:"bytes,8,opt,name=ClientLang,proto3" json:"ClientLang"`               // app语言 Chinese
	Network           string `protobuf:"bytes,9,opt,name=Network,proto3" json:"Network"`                     // x-nt 网络类型 5G/Wifi
	DeviceToken       string `protobuf:"bytes,10,opt,name=DeviceToken,proto3" json:"DeviceToken"`            // x-dt 设备token 位数不同设备不固定 用于push
	Channel           string `protobuf:"bytes,11,opt,name=Channel,proto3" json:"Channel"`                    // x-cn 当前app投放渠道 OPPO、Vivo 、三星、小米、苹果、一加、华为、TECNO
	Appcode           string `protobuf:"bytes,12,opt,name=Appcode,proto3" json:"Appcode"`                    // x-cd 当前app标识码
	// contains filtered or unexported fields
}

func (*PublicParams) Descriptor deprecated

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

Deprecated: Use PublicParams.ProtoReflect.Descriptor instead.

func (*PublicParams) GetAppcode

func (x *PublicParams) GetAppcode() string

func (*PublicParams) GetChannel

func (x *PublicParams) GetChannel() string

func (*PublicParams) GetClientLang

func (x *PublicParams) GetClientLang() string

func (*PublicParams) GetClientVersion

func (x *PublicParams) GetClientVersion() string

func (*PublicParams) GetDeviceFingerprint

func (x *PublicParams) GetDeviceFingerprint() string

func (*PublicParams) GetDeviceToken

func (x *PublicParams) GetDeviceToken() string

func (*PublicParams) GetNetwork

func (x *PublicParams) GetNetwork() string

func (*PublicParams) GetOperatingSystem

func (x *PublicParams) GetOperatingSystem() string

func (*PublicParams) GetPackageName

func (x *PublicParams) GetPackageName() string

func (*PublicParams) GetPlat

func (x *PublicParams) GetPlat() string

func (*PublicParams) ProtoMessage

func (*PublicParams) ProtoMessage()

func (*PublicParams) ProtoReflect

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

func (*PublicParams) Reset

func (x *PublicParams) Reset()

func (*PublicParams) String

func (x *PublicParams) String() string

func (*PublicParams) Validate

func (m *PublicParams) Validate() error

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

func (m *PublicParams) ValidateAll() error

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

type PublicParamsMultiError

type PublicParamsMultiError []error

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

func (PublicParamsMultiError) AllErrors

func (m PublicParamsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PublicParamsMultiError) Error

func (m PublicParamsMultiError) Error() string

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

type PublicParamsValidationError

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

PublicParamsValidationError is the validation error returned by PublicParams.Validate if the designated constraints aren't met.

func (PublicParamsValidationError) Cause

Cause function returns cause value.

func (PublicParamsValidationError) Error

Error satisfies the builtin error interface

func (PublicParamsValidationError) ErrorName

func (e PublicParamsValidationError) ErrorName() string

ErrorName returns error name.

func (PublicParamsValidationError) Field

Field function returns field value.

func (PublicParamsValidationError) Key

Key function returns key value.

func (PublicParamsValidationError) Reason

Reason function returns reason value.

type RealCertRequest

type RealCertRequest struct {
	UserIds []int64 `protobuf:"varint,1,rep,packed,name=UserIds,proto3" json:"UserIds"` // 多个用户ID array()
	Type    int32   `protobuf:"varint,2,opt,name=Type,proto3" json:"Type"`              // 认证类型 1:主播 2:币商户
	// contains filtered or unexported fields
}

func (*RealCertRequest) Descriptor deprecated

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

Deprecated: Use RealCertRequest.ProtoReflect.Descriptor instead.

func (*RealCertRequest) GetType

func (x *RealCertRequest) GetType() int32

func (*RealCertRequest) GetUserIds

func (x *RealCertRequest) GetUserIds() []int64

func (*RealCertRequest) ProtoMessage

func (*RealCertRequest) ProtoMessage()

func (*RealCertRequest) ProtoReflect

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

func (*RealCertRequest) Reset

func (x *RealCertRequest) Reset()

func (*RealCertRequest) String

func (x *RealCertRequest) String() string

func (*RealCertRequest) Validate

func (m *RealCertRequest) Validate() error

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

func (m *RealCertRequest) ValidateAll() error

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

type RealCertRequestMultiError

type RealCertRequestMultiError []error

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

func (RealCertRequestMultiError) AllErrors

func (m RealCertRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RealCertRequestMultiError) Error

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

type RealCertRequestValidationError

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

RealCertRequestValidationError is the validation error returned by RealCertRequest.Validate if the designated constraints aren't met.

func (RealCertRequestValidationError) Cause

Cause function returns cause value.

func (RealCertRequestValidationError) Error

Error satisfies the builtin error interface

func (RealCertRequestValidationError) ErrorName

func (e RealCertRequestValidationError) ErrorName() string

ErrorName returns error name.

func (RealCertRequestValidationError) Field

Field function returns field value.

func (RealCertRequestValidationError) Key

Key function returns key value.

func (RealCertRequestValidationError) Reason

Reason function returns reason value.

type SaveAssistantUserRequest

type SaveAssistantUserRequest struct {
	UserId      int64  `protobuf:"varint,1,opt,name=UserId,proto3" json:"UserId"`
	OldPassword string `protobuf:"bytes,2,opt,name=OldPassword,proto3" json:"OldPassword"`
	NewPassword string `protobuf:"bytes,3,opt,name=NewPassword,proto3" json:"NewPassword"`
	// contains filtered or unexported fields
}

func (*SaveAssistantUserRequest) Descriptor deprecated

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

Deprecated: Use SaveAssistantUserRequest.ProtoReflect.Descriptor instead.

func (*SaveAssistantUserRequest) GetNewPassword

func (x *SaveAssistantUserRequest) GetNewPassword() string

func (*SaveAssistantUserRequest) GetOldPassword

func (x *SaveAssistantUserRequest) GetOldPassword() string

func (*SaveAssistantUserRequest) GetUserId

func (x *SaveAssistantUserRequest) GetUserId() int64

func (*SaveAssistantUserRequest) ProtoMessage

func (*SaveAssistantUserRequest) ProtoMessage()

func (*SaveAssistantUserRequest) ProtoReflect

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

func (*SaveAssistantUserRequest) Reset

func (x *SaveAssistantUserRequest) Reset()

func (*SaveAssistantUserRequest) String

func (x *SaveAssistantUserRequest) String() string

func (*SaveAssistantUserRequest) Validate

func (m *SaveAssistantUserRequest) Validate() error

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

func (m *SaveAssistantUserRequest) ValidateAll() error

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

type SaveAssistantUserRequestMultiError

type SaveAssistantUserRequestMultiError []error

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

func (SaveAssistantUserRequestMultiError) AllErrors

func (m SaveAssistantUserRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SaveAssistantUserRequestMultiError) Error

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

type SaveAssistantUserRequestValidationError

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

SaveAssistantUserRequestValidationError is the validation error returned by SaveAssistantUserRequest.Validate if the designated constraints aren't met.

func (SaveAssistantUserRequestValidationError) Cause

Cause function returns cause value.

func (SaveAssistantUserRequestValidationError) Error

Error satisfies the builtin error interface

func (SaveAssistantUserRequestValidationError) ErrorName

ErrorName returns error name.

func (SaveAssistantUserRequestValidationError) Field

Field function returns field value.

func (SaveAssistantUserRequestValidationError) Key

Key function returns key value.

func (SaveAssistantUserRequestValidationError) Reason

Reason function returns reason value.

type SaveAssistantUserResponse

type SaveAssistantUserResponse struct {
	UserId    int64  `protobuf:"varint,1,opt,name=UserId,proto3" json:"UserId"`
	ShowId    int64  `protobuf:"varint,2,opt,name=ShowId,proto3" json:"ShowId"`
	CreatedAt string `protobuf:"bytes,3,opt,name=CreatedAt,proto3" json:"CreatedAt"`
	// contains filtered or unexported fields
}

func (*SaveAssistantUserResponse) Descriptor deprecated

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

Deprecated: Use SaveAssistantUserResponse.ProtoReflect.Descriptor instead.

func (*SaveAssistantUserResponse) GetCreatedAt

func (x *SaveAssistantUserResponse) GetCreatedAt() string

func (*SaveAssistantUserResponse) GetShowId

func (x *SaveAssistantUserResponse) GetShowId() int64

func (*SaveAssistantUserResponse) GetUserId

func (x *SaveAssistantUserResponse) GetUserId() int64

func (*SaveAssistantUserResponse) ProtoMessage

func (*SaveAssistantUserResponse) ProtoMessage()

func (*SaveAssistantUserResponse) ProtoReflect

func (*SaveAssistantUserResponse) Reset

func (x *SaveAssistantUserResponse) Reset()

func (*SaveAssistantUserResponse) String

func (x *SaveAssistantUserResponse) String() string

func (*SaveAssistantUserResponse) Validate

func (m *SaveAssistantUserResponse) Validate() error

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

func (m *SaveAssistantUserResponse) ValidateAll() error

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

type SaveAssistantUserResponseMultiError

type SaveAssistantUserResponseMultiError []error

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

func (SaveAssistantUserResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (SaveAssistantUserResponseMultiError) Error

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

type SaveAssistantUserResponseValidationError

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

SaveAssistantUserResponseValidationError is the validation error returned by SaveAssistantUserResponse.Validate if the designated constraints aren't met.

func (SaveAssistantUserResponseValidationError) Cause

Cause function returns cause value.

func (SaveAssistantUserResponseValidationError) Error

Error satisfies the builtin error interface

func (SaveAssistantUserResponseValidationError) ErrorName

ErrorName returns error name.

func (SaveAssistantUserResponseValidationError) Field

Field function returns field value.

func (SaveAssistantUserResponseValidationError) Key

Key function returns key value.

func (SaveAssistantUserResponseValidationError) Reason

Reason function returns reason value.

type SearchItem

type SearchItem struct {
	UserId   int64  `protobuf:"varint,1,opt,name=UserId,proto3" json:"UserId"`
	ShowId   int64  `protobuf:"varint,2,opt,name=ShowId,proto3" json:"ShowId"`
	Nickname string `protobuf:"bytes,3,opt,name=Nickname,proto3" json:"Nickname"` // 昵称
	Avatar   string `protobuf:"bytes,4,opt,name=Avatar,proto3" json:"Avatar"`     // 头像
	// contains filtered or unexported fields
}

func (*SearchItem) Descriptor deprecated

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

Deprecated: Use SearchItem.ProtoReflect.Descriptor instead.

func (*SearchItem) GetAvatar

func (x *SearchItem) GetAvatar() string

func (*SearchItem) GetNickname

func (x *SearchItem) GetNickname() string

func (*SearchItem) GetShowId

func (x *SearchItem) GetShowId() int64

func (*SearchItem) GetUserId

func (x *SearchItem) GetUserId() int64

func (*SearchItem) ProtoMessage

func (*SearchItem) ProtoMessage()

func (*SearchItem) ProtoReflect

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

func (*SearchItem) Reset

func (x *SearchItem) Reset()

func (*SearchItem) String

func (x *SearchItem) String() string

func (*SearchItem) Validate

func (m *SearchItem) Validate() error

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

func (m *SearchItem) ValidateAll() error

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

type SearchItemMultiError

type SearchItemMultiError []error

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

func (SearchItemMultiError) AllErrors

func (m SearchItemMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SearchItemMultiError) Error

func (m SearchItemMultiError) Error() string

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

type SearchItemValidationError

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

SearchItemValidationError is the validation error returned by SearchItem.Validate if the designated constraints aren't met.

func (SearchItemValidationError) Cause

func (e SearchItemValidationError) Cause() error

Cause function returns cause value.

func (SearchItemValidationError) Error

Error satisfies the builtin error interface

func (SearchItemValidationError) ErrorName

func (e SearchItemValidationError) ErrorName() string

ErrorName returns error name.

func (SearchItemValidationError) Field

Field function returns field value.

func (SearchItemValidationError) Key

Key function returns key value.

func (SearchItemValidationError) Reason

func (e SearchItemValidationError) Reason() string

Reason function returns reason value.

type SearchUserListRequest

type SearchUserListRequest struct {
	Keyword string `protobuf:"bytes,1,opt,name=Keyword,proto3" json:"Keyword"` // 关键词
	// contains filtered or unexported fields
}

func (*SearchUserListRequest) Descriptor deprecated

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

Deprecated: Use SearchUserListRequest.ProtoReflect.Descriptor instead.

func (*SearchUserListRequest) GetKeyword

func (x *SearchUserListRequest) GetKeyword() string

func (*SearchUserListRequest) ProtoMessage

func (*SearchUserListRequest) ProtoMessage()

func (*SearchUserListRequest) ProtoReflect

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

func (*SearchUserListRequest) Reset

func (x *SearchUserListRequest) Reset()

func (*SearchUserListRequest) String

func (x *SearchUserListRequest) String() string

func (*SearchUserListRequest) Validate

func (m *SearchUserListRequest) Validate() error

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

func (m *SearchUserListRequest) ValidateAll() error

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

type SearchUserListRequestMultiError

type SearchUserListRequestMultiError []error

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

func (SearchUserListRequestMultiError) AllErrors

func (m SearchUserListRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SearchUserListRequestMultiError) Error

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

type SearchUserListRequestValidationError

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

SearchUserListRequestValidationError is the validation error returned by SearchUserListRequest.Validate if the designated constraints aren't met.

func (SearchUserListRequestValidationError) Cause

Cause function returns cause value.

func (SearchUserListRequestValidationError) Error

Error satisfies the builtin error interface

func (SearchUserListRequestValidationError) ErrorName

ErrorName returns error name.

func (SearchUserListRequestValidationError) Field

Field function returns field value.

func (SearchUserListRequestValidationError) Key

Key function returns key value.

func (SearchUserListRequestValidationError) Reason

Reason function returns reason value.

type SearchUserListResponse

type SearchUserListResponse struct {
	Items []*SearchItem `protobuf:"bytes,1,rep,name=items,proto3" json:"items"`
	// contains filtered or unexported fields
}

func (*SearchUserListResponse) Descriptor deprecated

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

Deprecated: Use SearchUserListResponse.ProtoReflect.Descriptor instead.

func (*SearchUserListResponse) GetItems

func (x *SearchUserListResponse) GetItems() []*SearchItem

func (*SearchUserListResponse) ProtoMessage

func (*SearchUserListResponse) ProtoMessage()

func (*SearchUserListResponse) ProtoReflect

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

func (*SearchUserListResponse) Reset

func (x *SearchUserListResponse) Reset()

func (*SearchUserListResponse) String

func (x *SearchUserListResponse) String() string

func (*SearchUserListResponse) Validate

func (m *SearchUserListResponse) Validate() error

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

func (m *SearchUserListResponse) ValidateAll() error

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

type SearchUserListResponseMultiError

type SearchUserListResponseMultiError []error

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

func (SearchUserListResponseMultiError) AllErrors

func (m SearchUserListResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SearchUserListResponseMultiError) Error

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

type SearchUserListResponseValidationError

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

SearchUserListResponseValidationError is the validation error returned by SearchUserListResponse.Validate if the designated constraints aren't met.

func (SearchUserListResponseValidationError) Cause

Cause function returns cause value.

func (SearchUserListResponseValidationError) Error

Error satisfies the builtin error interface

func (SearchUserListResponseValidationError) ErrorName

ErrorName returns error name.

func (SearchUserListResponseValidationError) Field

Field function returns field value.

func (SearchUserListResponseValidationError) Key

Key function returns key value.

func (SearchUserListResponseValidationError) Reason

Reason function returns reason value.

type SetAddressRequest

type SetAddressRequest struct {
	UserId       int64  `protobuf:"varint,1,opt,name=UserId,proto3" json:"UserId"`            // 用户ID
	CityCode     string `protobuf:"bytes,2,opt,name=CityCode,proto3" json:"CityCode"`         // 市 地区划分代码
	ProvinceCode string `protobuf:"bytes,3,opt,name=ProvinceCode,proto3" json:"ProvinceCode"` // 省 地区划分代码
	// contains filtered or unexported fields
}

func (*SetAddressRequest) Descriptor deprecated

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

Deprecated: Use SetAddressRequest.ProtoReflect.Descriptor instead.

func (*SetAddressRequest) GetCityCode

func (x *SetAddressRequest) GetCityCode() string

func (*SetAddressRequest) GetProvinceCode

func (x *SetAddressRequest) GetProvinceCode() string

func (*SetAddressRequest) GetUserId

func (x *SetAddressRequest) GetUserId() int64

func (*SetAddressRequest) ProtoMessage

func (*SetAddressRequest) ProtoMessage()

func (*SetAddressRequest) ProtoReflect

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

func (*SetAddressRequest) Reset

func (x *SetAddressRequest) Reset()

func (*SetAddressRequest) String

func (x *SetAddressRequest) String() string

func (*SetAddressRequest) Validate

func (m *SetAddressRequest) Validate() error

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

func (m *SetAddressRequest) ValidateAll() error

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

type SetAddressRequestMultiError

type SetAddressRequestMultiError []error

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

func (SetAddressRequestMultiError) AllErrors

func (m SetAddressRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SetAddressRequestMultiError) Error

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

type SetAddressRequestValidationError

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

SetAddressRequestValidationError is the validation error returned by SetAddressRequest.Validate if the designated constraints aren't met.

func (SetAddressRequestValidationError) Cause

Cause function returns cause value.

func (SetAddressRequestValidationError) Error

Error satisfies the builtin error interface

func (SetAddressRequestValidationError) ErrorName

ErrorName returns error name.

func (SetAddressRequestValidationError) Field

Field function returns field value.

func (SetAddressRequestValidationError) Key

Key function returns key value.

func (SetAddressRequestValidationError) Reason

Reason function returns reason value.

type SetAvatarRequest

type SetAvatarRequest struct {
	UserId int64  `protobuf:"varint,1,opt,name=UserId,proto3" json:"UserId"` // 用户ID
	Avatar string `protobuf:"bytes,2,opt,name=Avatar,proto3" json:"Avatar"`  // 头像地址
	// contains filtered or unexported fields
}

func (*SetAvatarRequest) Descriptor deprecated

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

Deprecated: Use SetAvatarRequest.ProtoReflect.Descriptor instead.

func (*SetAvatarRequest) GetAvatar

func (x *SetAvatarRequest) GetAvatar() string

func (*SetAvatarRequest) GetUserId

func (x *SetAvatarRequest) GetUserId() int64

func (*SetAvatarRequest) ProtoMessage

func (*SetAvatarRequest) ProtoMessage()

func (*SetAvatarRequest) ProtoReflect

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

func (*SetAvatarRequest) Reset

func (x *SetAvatarRequest) Reset()

func (*SetAvatarRequest) String

func (x *SetAvatarRequest) String() string

func (*SetAvatarRequest) Validate

func (m *SetAvatarRequest) Validate() error

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

func (m *SetAvatarRequest) ValidateAll() error

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

type SetAvatarRequestMultiError

type SetAvatarRequestMultiError []error

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

func (SetAvatarRequestMultiError) AllErrors

func (m SetAvatarRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SetAvatarRequestMultiError) Error

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

type SetAvatarRequestValidationError

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

SetAvatarRequestValidationError is the validation error returned by SetAvatarRequest.Validate if the designated constraints aren't met.

func (SetAvatarRequestValidationError) Cause

Cause function returns cause value.

func (SetAvatarRequestValidationError) Error

Error satisfies the builtin error interface

func (SetAvatarRequestValidationError) ErrorName

ErrorName returns error name.

func (SetAvatarRequestValidationError) Field

Field function returns field value.

func (SetAvatarRequestValidationError) Key

Key function returns key value.

func (SetAvatarRequestValidationError) Reason

Reason function returns reason value.

type SetDeviceTokenRequest

type SetDeviceTokenRequest struct {
	UserId      int64  `protobuf:"varint,1,opt,name=UserId,proto3" json:"UserId"`          // 用户ID
	DeviceToken string `protobuf:"bytes,2,opt,name=DeviceToken,proto3" json:"DeviceToken"` //设备token
	// contains filtered or unexported fields
}

func (*SetDeviceTokenRequest) Descriptor deprecated

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

Deprecated: Use SetDeviceTokenRequest.ProtoReflect.Descriptor instead.

func (*SetDeviceTokenRequest) GetDeviceToken

func (x *SetDeviceTokenRequest) GetDeviceToken() string

func (*SetDeviceTokenRequest) GetUserId

func (x *SetDeviceTokenRequest) GetUserId() int64

func (*SetDeviceTokenRequest) ProtoMessage

func (*SetDeviceTokenRequest) ProtoMessage()

func (*SetDeviceTokenRequest) ProtoReflect

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

func (*SetDeviceTokenRequest) Reset

func (x *SetDeviceTokenRequest) Reset()

func (*SetDeviceTokenRequest) String

func (x *SetDeviceTokenRequest) String() string

func (*SetDeviceTokenRequest) Validate

func (m *SetDeviceTokenRequest) Validate() error

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

func (m *SetDeviceTokenRequest) ValidateAll() error

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

type SetDeviceTokenRequestMultiError

type SetDeviceTokenRequestMultiError []error

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

func (SetDeviceTokenRequestMultiError) AllErrors

func (m SetDeviceTokenRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SetDeviceTokenRequestMultiError) Error

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

type SetDeviceTokenRequestValidationError

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

SetDeviceTokenRequestValidationError is the validation error returned by SetDeviceTokenRequest.Validate if the designated constraints aren't met.

func (SetDeviceTokenRequestValidationError) Cause

Cause function returns cause value.

func (SetDeviceTokenRequestValidationError) Error

Error satisfies the builtin error interface

func (SetDeviceTokenRequestValidationError) ErrorName

ErrorName returns error name.

func (SetDeviceTokenRequestValidationError) Field

Field function returns field value.

func (SetDeviceTokenRequestValidationError) Key

Key function returns key value.

func (SetDeviceTokenRequestValidationError) Reason

Reason function returns reason value.

type SetGenderRequest

type SetGenderRequest struct {
	UserId int64 `protobuf:"varint,1,opt,name=UserId,proto3" json:"UserId"` // 用户ID
	Gender int64 `protobuf:"varint,2,opt,name=Gender,proto3" json:"Gender"` // 性别 1:男 2:女
	// contains filtered or unexported fields
}

func (*SetGenderRequest) Descriptor deprecated

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

Deprecated: Use SetGenderRequest.ProtoReflect.Descriptor instead.

func (*SetGenderRequest) GetGender

func (x *SetGenderRequest) GetGender() int64

func (*SetGenderRequest) GetUserId

func (x *SetGenderRequest) GetUserId() int64

func (*SetGenderRequest) ProtoMessage

func (*SetGenderRequest) ProtoMessage()

func (*SetGenderRequest) ProtoReflect

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

func (*SetGenderRequest) Reset

func (x *SetGenderRequest) Reset()

func (*SetGenderRequest) String

func (x *SetGenderRequest) String() string

func (*SetGenderRequest) Validate

func (m *SetGenderRequest) Validate() error

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

func (m *SetGenderRequest) ValidateAll() error

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

type SetGenderRequestMultiError

type SetGenderRequestMultiError []error

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

func (SetGenderRequestMultiError) AllErrors

func (m SetGenderRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SetGenderRequestMultiError) Error

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

type SetGenderRequestValidationError

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

SetGenderRequestValidationError is the validation error returned by SetGenderRequest.Validate if the designated constraints aren't met.

func (SetGenderRequestValidationError) Cause

Cause function returns cause value.

func (SetGenderRequestValidationError) Error

Error satisfies the builtin error interface

func (SetGenderRequestValidationError) ErrorName

ErrorName returns error name.

func (SetGenderRequestValidationError) Field

Field function returns field value.

func (SetGenderRequestValidationError) Key

Key function returns key value.

func (SetGenderRequestValidationError) Reason

Reason function returns reason value.

type SetNicknameRequest

type SetNicknameRequest struct {
	UserId   int64  `protobuf:"varint,1,opt,name=UserId,proto3" json:"UserId"`    // 用户ID
	Nickname string `protobuf:"bytes,2,opt,name=Nickname,proto3" json:"Nickname"` // 昵称
	IsReset  bool   `protobuf:"varint,3,opt,name=IsReset,proto3" json:"IsReset"`  //是否重置昵称
	// contains filtered or unexported fields
}

func (*SetNicknameRequest) Descriptor deprecated

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

Deprecated: Use SetNicknameRequest.ProtoReflect.Descriptor instead.

func (*SetNicknameRequest) GetIsReset

func (x *SetNicknameRequest) GetIsReset() bool

func (*SetNicknameRequest) GetNickname

func (x *SetNicknameRequest) GetNickname() string

func (*SetNicknameRequest) GetUserId

func (x *SetNicknameRequest) GetUserId() int64

func (*SetNicknameRequest) ProtoMessage

func (*SetNicknameRequest) ProtoMessage()

func (*SetNicknameRequest) ProtoReflect

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

func (*SetNicknameRequest) Reset

func (x *SetNicknameRequest) Reset()

func (*SetNicknameRequest) String

func (x *SetNicknameRequest) String() string

func (*SetNicknameRequest) Validate

func (m *SetNicknameRequest) Validate() error

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

func (m *SetNicknameRequest) ValidateAll() error

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

type SetNicknameRequestMultiError

type SetNicknameRequestMultiError []error

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

func (SetNicknameRequestMultiError) AllErrors

func (m SetNicknameRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SetNicknameRequestMultiError) Error

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

type SetNicknameRequestValidationError

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

SetNicknameRequestValidationError is the validation error returned by SetNicknameRequest.Validate if the designated constraints aren't met.

func (SetNicknameRequestValidationError) Cause

Cause function returns cause value.

func (SetNicknameRequestValidationError) Error

Error satisfies the builtin error interface

func (SetNicknameRequestValidationError) ErrorName

ErrorName returns error name.

func (SetNicknameRequestValidationError) Field

Field function returns field value.

func (SetNicknameRequestValidationError) Key

Key function returns key value.

func (SetNicknameRequestValidationError) Reason

Reason function returns reason value.

type SetStatusRequest

type SetStatusRequest struct {
	UserId int64 `protobuf:"varint,1,opt,name=UserId,proto3" json:"UserId"` // 用户ID
	Status int64 `protobuf:"varint,2,opt,name=Status,proto3" json:"Status"` // 0:正常 1:禁用
	// contains filtered or unexported fields
}

func (*SetStatusRequest) Descriptor deprecated

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

Deprecated: Use SetStatusRequest.ProtoReflect.Descriptor instead.

func (*SetStatusRequest) GetStatus

func (x *SetStatusRequest) GetStatus() int64

func (*SetStatusRequest) GetUserId

func (x *SetStatusRequest) GetUserId() int64

func (*SetStatusRequest) ProtoMessage

func (*SetStatusRequest) ProtoMessage()

func (*SetStatusRequest) ProtoReflect

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

func (*SetStatusRequest) Reset

func (x *SetStatusRequest) Reset()

func (*SetStatusRequest) String

func (x *SetStatusRequest) String() string

func (*SetStatusRequest) Validate

func (m *SetStatusRequest) Validate() error

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

func (m *SetStatusRequest) ValidateAll() error

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

type SetStatusRequestMultiError

type SetStatusRequestMultiError []error

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

func (SetStatusRequestMultiError) AllErrors

func (m SetStatusRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SetStatusRequestMultiError) Error

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

type SetStatusRequestValidationError

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

SetStatusRequestValidationError is the validation error returned by SetStatusRequest.Validate if the designated constraints aren't met.

func (SetStatusRequestValidationError) Cause

Cause function returns cause value.

func (SetStatusRequestValidationError) Error

Error satisfies the builtin error interface

func (SetStatusRequestValidationError) ErrorName

ErrorName returns error name.

func (SetStatusRequestValidationError) Field

Field function returns field value.

func (SetStatusRequestValidationError) Key

Key function returns key value.

func (SetStatusRequestValidationError) Reason

Reason function returns reason value.

type SetUserCountryRequest

type SetUserCountryRequest struct {
	UserId  int64  `protobuf:"varint,1,opt,name=UserId,proto3" json:"UserId"`  // 用户ID
	Country string `protobuf:"bytes,2,opt,name=Country,proto3" json:"Country"` // 国家
	// contains filtered or unexported fields
}

func (*SetUserCountryRequest) Descriptor deprecated

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

Deprecated: Use SetUserCountryRequest.ProtoReflect.Descriptor instead.

func (*SetUserCountryRequest) GetCountry

func (x *SetUserCountryRequest) GetCountry() string

func (*SetUserCountryRequest) GetUserId

func (x *SetUserCountryRequest) GetUserId() int64

func (*SetUserCountryRequest) ProtoMessage

func (*SetUserCountryRequest) ProtoMessage()

func (*SetUserCountryRequest) ProtoReflect

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

func (*SetUserCountryRequest) Reset

func (x *SetUserCountryRequest) Reset()

func (*SetUserCountryRequest) String

func (x *SetUserCountryRequest) String() string

func (*SetUserCountryRequest) Validate

func (m *SetUserCountryRequest) Validate() error

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

func (m *SetUserCountryRequest) ValidateAll() error

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

type SetUserCountryRequestMultiError

type SetUserCountryRequestMultiError []error

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

func (SetUserCountryRequestMultiError) AllErrors

func (m SetUserCountryRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SetUserCountryRequestMultiError) Error

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

type SetUserCountryRequestValidationError

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

SetUserCountryRequestValidationError is the validation error returned by SetUserCountryRequest.Validate if the designated constraints aren't met.

func (SetUserCountryRequestValidationError) Cause

Cause function returns cause value.

func (SetUserCountryRequestValidationError) Error

Error satisfies the builtin error interface

func (SetUserCountryRequestValidationError) ErrorName

ErrorName returns error name.

func (SetUserCountryRequestValidationError) Field

Field function returns field value.

func (SetUserCountryRequestValidationError) Key

Key function returns key value.

func (SetUserCountryRequestValidationError) Reason

Reason function returns reason value.

type TimeRangeNewUsersRequest

type TimeRangeNewUsersRequest struct {
	UserIds   []int64 `protobuf:"varint,1,rep,packed,name=UserIds,proto3" json:"UserIds"` // 用户ids 最大500个
	StartTime string  `protobuf:"bytes,2,opt,name=StartTime,proto3" json:"StartTime"`     // 开始时间 2022-10-18 或 2000-10-18 10:12:14
	EndTime   string  `protobuf:"bytes,3,opt,name=EndTime,proto3" json:"EndTime"`         // 结束时间 2022-10-19 或  2000-10-19 10:12:14
	// contains filtered or unexported fields
}

func (*TimeRangeNewUsersRequest) Descriptor deprecated

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

Deprecated: Use TimeRangeNewUsersRequest.ProtoReflect.Descriptor instead.

func (*TimeRangeNewUsersRequest) GetEndTime

func (x *TimeRangeNewUsersRequest) GetEndTime() string

func (*TimeRangeNewUsersRequest) GetStartTime

func (x *TimeRangeNewUsersRequest) GetStartTime() string

func (*TimeRangeNewUsersRequest) GetUserIds

func (x *TimeRangeNewUsersRequest) GetUserIds() []int64

func (*TimeRangeNewUsersRequest) ProtoMessage

func (*TimeRangeNewUsersRequest) ProtoMessage()

func (*TimeRangeNewUsersRequest) ProtoReflect

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

func (*TimeRangeNewUsersRequest) Reset

func (x *TimeRangeNewUsersRequest) Reset()

func (*TimeRangeNewUsersRequest) String

func (x *TimeRangeNewUsersRequest) String() string

func (*TimeRangeNewUsersRequest) Validate

func (m *TimeRangeNewUsersRequest) Validate() error

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

func (m *TimeRangeNewUsersRequest) ValidateAll() error

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

type TimeRangeNewUsersRequestMultiError

type TimeRangeNewUsersRequestMultiError []error

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

func (TimeRangeNewUsersRequestMultiError) AllErrors

func (m TimeRangeNewUsersRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TimeRangeNewUsersRequestMultiError) Error

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

type TimeRangeNewUsersRequestValidationError

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

TimeRangeNewUsersRequestValidationError is the validation error returned by TimeRangeNewUsersRequest.Validate if the designated constraints aren't met.

func (TimeRangeNewUsersRequestValidationError) Cause

Cause function returns cause value.

func (TimeRangeNewUsersRequestValidationError) Error

Error satisfies the builtin error interface

func (TimeRangeNewUsersRequestValidationError) ErrorName

ErrorName returns error name.

func (TimeRangeNewUsersRequestValidationError) Field

Field function returns field value.

func (TimeRangeNewUsersRequestValidationError) Key

Key function returns key value.

func (TimeRangeNewUsersRequestValidationError) Reason

Reason function returns reason value.

type TimeRangeNewUsersResponse

type TimeRangeNewUsersResponse struct {
	Items map[int64]string `` // 新用户列表
	/* 142-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*TimeRangeNewUsersResponse) Descriptor deprecated

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

Deprecated: Use TimeRangeNewUsersResponse.ProtoReflect.Descriptor instead.

func (*TimeRangeNewUsersResponse) GetItems

func (x *TimeRangeNewUsersResponse) GetItems() map[int64]string

func (*TimeRangeNewUsersResponse) ProtoMessage

func (*TimeRangeNewUsersResponse) ProtoMessage()

func (*TimeRangeNewUsersResponse) ProtoReflect

func (*TimeRangeNewUsersResponse) Reset

func (x *TimeRangeNewUsersResponse) Reset()

func (*TimeRangeNewUsersResponse) String

func (x *TimeRangeNewUsersResponse) String() string

func (*TimeRangeNewUsersResponse) Validate

func (m *TimeRangeNewUsersResponse) Validate() error

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

func (m *TimeRangeNewUsersResponse) ValidateAll() error

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

type TimeRangeNewUsersResponseMultiError

type TimeRangeNewUsersResponseMultiError []error

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

func (TimeRangeNewUsersResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (TimeRangeNewUsersResponseMultiError) Error

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

type TimeRangeNewUsersResponseValidationError

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

TimeRangeNewUsersResponseValidationError is the validation error returned by TimeRangeNewUsersResponse.Validate if the designated constraints aren't met.

func (TimeRangeNewUsersResponseValidationError) Cause

Cause function returns cause value.

func (TimeRangeNewUsersResponseValidationError) Error

Error satisfies the builtin error interface

func (TimeRangeNewUsersResponseValidationError) ErrorName

ErrorName returns error name.

func (TimeRangeNewUsersResponseValidationError) Field

Field function returns field value.

func (TimeRangeNewUsersResponseValidationError) Key

Key function returns key value.

func (TimeRangeNewUsersResponseValidationError) Reason

Reason function returns reason value.

type ToolsRequest

type ToolsRequest struct {
	ActionType int32 `protobuf:"varint,1,opt,name=ActionType,proto3" json:"ActionType"` // 1 写入机器人 2 缓存机器人 3 生成机器人座驾 4 历史游客发放金币
	// contains filtered or unexported fields
}

func (*ToolsRequest) Descriptor deprecated

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

Deprecated: Use ToolsRequest.ProtoReflect.Descriptor instead.

func (*ToolsRequest) GetActionType

func (x *ToolsRequest) GetActionType() int32

func (*ToolsRequest) ProtoMessage

func (*ToolsRequest) ProtoMessage()

func (*ToolsRequest) ProtoReflect

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

func (*ToolsRequest) Reset

func (x *ToolsRequest) Reset()

func (*ToolsRequest) String

func (x *ToolsRequest) String() string

func (*ToolsRequest) Validate

func (m *ToolsRequest) Validate() error

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

func (m *ToolsRequest) ValidateAll() error

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

type ToolsRequestMultiError

type ToolsRequestMultiError []error

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

func (ToolsRequestMultiError) AllErrors

func (m ToolsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ToolsRequestMultiError) Error

func (m ToolsRequestMultiError) Error() string

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

type ToolsRequestValidationError

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

ToolsRequestValidationError is the validation error returned by ToolsRequest.Validate if the designated constraints aren't met.

func (ToolsRequestValidationError) Cause

Cause function returns cause value.

func (ToolsRequestValidationError) Error

Error satisfies the builtin error interface

func (ToolsRequestValidationError) ErrorName

func (e ToolsRequestValidationError) ErrorName() string

ErrorName returns error name.

func (ToolsRequestValidationError) Field

Field function returns field value.

func (ToolsRequestValidationError) Key

Key function returns key value.

func (ToolsRequestValidationError) Reason

Reason function returns reason value.

type TripartitePlat

type TripartitePlat int32
const (
	TripartitePlat_plat_51live   TripartitePlat = 0 // 登录平台
	TripartitePlat_plat_apple    TripartitePlat = 1 // Apple
	TripartitePlat_plat_google   TripartitePlat = 2 // Google
	TripartitePlat_plat_facebook TripartitePlat = 3 // facebook
	TripartitePlat_plat_twitter  TripartitePlat = 4 // Twitter
	TripartitePlat_plat_line     TripartitePlat = 5 // line
)

func (TripartitePlat) Descriptor

func (TripartitePlat) Enum

func (x TripartitePlat) Enum() *TripartitePlat

func (TripartitePlat) EnumDescriptor deprecated

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

Deprecated: Use TripartitePlat.Descriptor instead.

func (TripartitePlat) Number

func (TripartitePlat) String

func (x TripartitePlat) String() string

func (TripartitePlat) Type

type UcenterHandler

type UcenterHandler interface {
	// 手机号登陆注册
	LoginMobile(context.Context, *LoginMobileRequest, *LoginRegisterResponse) error
	// 手机号密码登陆
	LoginMobilePassword(context.Context, *LoginMobilePasswordRequest, *LoginResponse) error
	// 设置用户状态(封禁及解除封禁)
	SetStatus(context.Context, *SetStatusRequest, *emptypb.Empty) error
	// 获取用户基本信息
	GetUser(context.Context, *UserRequest, *UserResponse) error
	// 修改用户基本信息
	UpdateUser(context.Context, *UpdateUserRequest, *UpdateUserResponse) error
	// 批量获取用户基本信息
	GetUsers(context.Context, *UsersRequest, *MultiItems) error
	// 用户认证
	RealCert(context.Context, *RealCertRequest, *wrapperspb.BoolValue) error
	// 设置用户国家
	SetUserCountry(context.Context, *SetUserCountryRequest, *wrapperspb.BoolValue) error
	// 用户搜索
	SearchUserList(context.Context, *SearchUserListRequest, *SearchUserListResponse) error
	// 账号注销
	WriteOff(context.Context, *WriteOffRequest, *emptypb.Empty) error
	// 账号激活
	Activate(context.Context, *ActivateRequest, *emptypb.Empty) error
	// 释放账号任务
	ReleaseTask(context.Context, *wrapperspb.StringValue, *wrapperspb.StringValue) error
	// 游客登录或注册
	LoginGuest(context.Context, *LoginGuestRequest, *LoginGuestResponse) error
	// 通过用户id或者指纹查找用户
	GetGuest(context.Context, *GuestRequest, *GuestResponse) error
	// 游客转为用户
	GuestToUser(context.Context, *GuestToUserRequest, *emptypb.Empty) error
	// 通过三方账户授权创建用户
	CreateUser(context.Context, *CreateUserRequest, *wrapperspb.Int64Value) error
	// 工具
	Tools(context.Context, *ToolsRequest, *emptypb.Empty) error
	// GetUserListByCountry
	GetUserListByCountry(context.Context, *GetUserListByCountryRequest, *GetUserListByCountryResponse) error
	// Ping
	Ping(context.Context, *emptypb.Empty, *wrapperspb.Int64Value) error
	// TimeRangeNewUsers
	TimeRangeNewUsers(context.Context, *TimeRangeNewUsersRequest, *TimeRangeNewUsersResponse) error
	// AnchorLevelFans
	AnchorLevelFans(context.Context, *AnchorLevelFansRequest, *AnchorLevelFansResponse) error
	// SaveAssistantUser 新增修改
	SaveAssistantUser(context.Context, *SaveAssistantUserRequest, *SaveAssistantUserResponse) error
	// SaveAssistantUser 获取助播
	GetAssistantUsers(context.Context, *GetAssistantUsersRequest, *GetAssistantUsersResponse) error
	// GetAssistantUser 检索是否有某个助播
	GetAssistantUser(context.Context, *GetAssistantUserRequest, *GetAssistantUserResponse) error
	// SaveAssistantUser 删除助播
	DelAssistantUser(context.Context, *DelAssistantUserRequest, *emptypb.Empty) error
	// 某个时间的游戏注册数 暂不支持跨天
	GuestRegisterRangeTime(context.Context, *GuestRegisterRangeTimeRequest, *GuestRegisterRangeTimeResponse) error
	// 游客注册下的设备区分
	GuestBindAccount(context.Context, *GuestBindAccountRequest, *GuestBindAccountResponse) error
}

type UcenterService

type UcenterService interface {
	// 手机号登陆注册
	LoginMobile(ctx context.Context, in *LoginMobileRequest, opts ...client.CallOption) (*LoginRegisterResponse, error)
	// 手机号密码登陆
	LoginMobilePassword(ctx context.Context, in *LoginMobilePasswordRequest, opts ...client.CallOption) (*LoginResponse, error)
	// 设置用户状态(封禁及解除封禁)
	SetStatus(ctx context.Context, in *SetStatusRequest, opts ...client.CallOption) (*emptypb.Empty, error)
	// 获取用户基本信息
	GetUser(ctx context.Context, in *UserRequest, opts ...client.CallOption) (*UserResponse, error)
	// 修改用户基本信息
	UpdateUser(ctx context.Context, in *UpdateUserRequest, opts ...client.CallOption) (*UpdateUserResponse, error)
	// 批量获取用户基本信息
	GetUsers(ctx context.Context, in *UsersRequest, opts ...client.CallOption) (*MultiItems, error)
	// 用户认证
	RealCert(ctx context.Context, in *RealCertRequest, opts ...client.CallOption) (*wrapperspb.BoolValue, error)
	// 设置用户国家
	SetUserCountry(ctx context.Context, in *SetUserCountryRequest, opts ...client.CallOption) (*wrapperspb.BoolValue, error)
	// 用户搜索
	SearchUserList(ctx context.Context, in *SearchUserListRequest, opts ...client.CallOption) (*SearchUserListResponse, error)
	// 账号注销
	WriteOff(ctx context.Context, in *WriteOffRequest, opts ...client.CallOption) (*emptypb.Empty, error)
	// 账号激活
	Activate(ctx context.Context, in *ActivateRequest, opts ...client.CallOption) (*emptypb.Empty, error)
	// 释放账号任务
	ReleaseTask(ctx context.Context, in *wrapperspb.StringValue, opts ...client.CallOption) (*wrapperspb.StringValue, error)
	// 游客登录或注册
	LoginGuest(ctx context.Context, in *LoginGuestRequest, opts ...client.CallOption) (*LoginGuestResponse, error)
	// 通过用户id或者指纹查找用户
	GetGuest(ctx context.Context, in *GuestRequest, opts ...client.CallOption) (*GuestResponse, error)
	// 游客转为用户
	GuestToUser(ctx context.Context, in *GuestToUserRequest, opts ...client.CallOption) (*emptypb.Empty, error)
	// 通过三方账户授权创建用户
	CreateUser(ctx context.Context, in *CreateUserRequest, opts ...client.CallOption) (*wrapperspb.Int64Value, error)
	// 工具
	Tools(ctx context.Context, in *ToolsRequest, opts ...client.CallOption) (*emptypb.Empty, error)
	// GetUserListByCountry
	GetUserListByCountry(ctx context.Context, in *GetUserListByCountryRequest, opts ...client.CallOption) (*GetUserListByCountryResponse, error)
	// Ping
	Ping(ctx context.Context, in *emptypb.Empty, opts ...client.CallOption) (*wrapperspb.Int64Value, error)
	// TimeRangeNewUsers
	TimeRangeNewUsers(ctx context.Context, in *TimeRangeNewUsersRequest, opts ...client.CallOption) (*TimeRangeNewUsersResponse, error)
	// AnchorLevelFans
	AnchorLevelFans(ctx context.Context, in *AnchorLevelFansRequest, opts ...client.CallOption) (*AnchorLevelFansResponse, error)
	// SaveAssistantUser 新增修改
	SaveAssistantUser(ctx context.Context, in *SaveAssistantUserRequest, opts ...client.CallOption) (*SaveAssistantUserResponse, error)
	// SaveAssistantUser 获取助播
	GetAssistantUsers(ctx context.Context, in *GetAssistantUsersRequest, opts ...client.CallOption) (*GetAssistantUsersResponse, error)
	// GetAssistantUser 检索是否有某个助播
	GetAssistantUser(ctx context.Context, in *GetAssistantUserRequest, opts ...client.CallOption) (*GetAssistantUserResponse, error)
	// SaveAssistantUser 删除助播
	DelAssistantUser(ctx context.Context, in *DelAssistantUserRequest, opts ...client.CallOption) (*emptypb.Empty, error)
	// 某个时间的游戏注册数 暂不支持跨天
	GuestRegisterRangeTime(ctx context.Context, in *GuestRegisterRangeTimeRequest, opts ...client.CallOption) (*GuestRegisterRangeTimeResponse, error)
	// 游客注册下的设备区分
	GuestBindAccount(ctx context.Context, in *GuestBindAccountRequest, opts ...client.CallOption) (*GuestBindAccountResponse, error)
}

func NewUcenterService

func NewUcenterService(name string, c client.Client) UcenterService

type UpdateUserRequest

type UpdateUserRequest struct {
	Item *Item                  `protobuf:"bytes,1,opt,name=Item,proto3" json:"Item"` //用户信息item
	Mask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=mask,proto3" json:"mask"`
	// contains filtered or unexported fields
}

func (*UpdateUserRequest) Descriptor deprecated

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

Deprecated: Use UpdateUserRequest.ProtoReflect.Descriptor instead.

func (*UpdateUserRequest) GetItem

func (x *UpdateUserRequest) GetItem() *Item

func (*UpdateUserRequest) GetMask

func (x *UpdateUserRequest) GetMask() *fieldmaskpb.FieldMask

func (*UpdateUserRequest) ProtoMessage

func (*UpdateUserRequest) ProtoMessage()

func (*UpdateUserRequest) ProtoReflect

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

func (*UpdateUserRequest) Reset

func (x *UpdateUserRequest) Reset()

func (*UpdateUserRequest) String

func (x *UpdateUserRequest) String() string

func (*UpdateUserRequest) Validate

func (m *UpdateUserRequest) Validate() error

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

func (m *UpdateUserRequest) ValidateAll() error

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

type UpdateUserRequestMultiError

type UpdateUserRequestMultiError []error

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

func (UpdateUserRequestMultiError) AllErrors

func (m UpdateUserRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateUserRequestMultiError) Error

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

type UpdateUserRequestValidationError

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

UpdateUserRequestValidationError is the validation error returned by UpdateUserRequest.Validate if the designated constraints aren't met.

func (UpdateUserRequestValidationError) Cause

Cause function returns cause value.

func (UpdateUserRequestValidationError) Error

Error satisfies the builtin error interface

func (UpdateUserRequestValidationError) ErrorName

ErrorName returns error name.

func (UpdateUserRequestValidationError) Field

Field function returns field value.

func (UpdateUserRequestValidationError) Key

Key function returns key value.

func (UpdateUserRequestValidationError) Reason

Reason function returns reason value.

type UpdateUserResponse

type UpdateUserResponse struct {
	Item *Item `protobuf:"bytes,1,opt,name=Item,proto3" json:"Item"` //用户信息
	// contains filtered or unexported fields
}

func (*UpdateUserResponse) Descriptor deprecated

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

Deprecated: Use UpdateUserResponse.ProtoReflect.Descriptor instead.

func (*UpdateUserResponse) GetItem

func (x *UpdateUserResponse) GetItem() *Item

func (*UpdateUserResponse) ProtoMessage

func (*UpdateUserResponse) ProtoMessage()

func (*UpdateUserResponse) ProtoReflect

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

func (*UpdateUserResponse) Reset

func (x *UpdateUserResponse) Reset()

func (*UpdateUserResponse) String

func (x *UpdateUserResponse) String() string

func (*UpdateUserResponse) Validate

func (m *UpdateUserResponse) Validate() error

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

func (m *UpdateUserResponse) ValidateAll() error

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

type UpdateUserResponseMultiError

type UpdateUserResponseMultiError []error

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

func (UpdateUserResponseMultiError) AllErrors

func (m UpdateUserResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateUserResponseMultiError) Error

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

type UpdateUserResponseValidationError

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

UpdateUserResponseValidationError is the validation error returned by UpdateUserResponse.Validate if the designated constraints aren't met.

func (UpdateUserResponseValidationError) Cause

Cause function returns cause value.

func (UpdateUserResponseValidationError) Error

Error satisfies the builtin error interface

func (UpdateUserResponseValidationError) ErrorName

ErrorName returns error name.

func (UpdateUserResponseValidationError) Field

Field function returns field value.

func (UpdateUserResponseValidationError) Key

Key function returns key value.

func (UpdateUserResponseValidationError) Reason

Reason function returns reason value.

type UserByMobileRequest

type UserByMobileRequest struct {
	RegionCode string `protobuf:"bytes,1,opt,name=RegionCode,proto3" json:"RegionCode"`
	Mobile     string `protobuf:"bytes,2,opt,name=Mobile,proto3" json:"Mobile"`
	// contains filtered or unexported fields
}

func (*UserByMobileRequest) Descriptor deprecated

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

Deprecated: Use UserByMobileRequest.ProtoReflect.Descriptor instead.

func (*UserByMobileRequest) GetMobile

func (x *UserByMobileRequest) GetMobile() string

func (*UserByMobileRequest) GetRegionCode

func (x *UserByMobileRequest) GetRegionCode() string

func (*UserByMobileRequest) ProtoMessage

func (*UserByMobileRequest) ProtoMessage()

func (*UserByMobileRequest) ProtoReflect

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

func (*UserByMobileRequest) Reset

func (x *UserByMobileRequest) Reset()

func (*UserByMobileRequest) String

func (x *UserByMobileRequest) String() string

func (*UserByMobileRequest) Validate

func (m *UserByMobileRequest) Validate() error

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

func (m *UserByMobileRequest) ValidateAll() error

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

type UserByMobileRequestMultiError

type UserByMobileRequestMultiError []error

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

func (UserByMobileRequestMultiError) AllErrors

func (m UserByMobileRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserByMobileRequestMultiError) Error

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

type UserByMobileRequestValidationError

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

UserByMobileRequestValidationError is the validation error returned by UserByMobileRequest.Validate if the designated constraints aren't met.

func (UserByMobileRequestValidationError) Cause

Cause function returns cause value.

func (UserByMobileRequestValidationError) Error

Error satisfies the builtin error interface

func (UserByMobileRequestValidationError) ErrorName

ErrorName returns error name.

func (UserByMobileRequestValidationError) Field

Field function returns field value.

func (UserByMobileRequestValidationError) Key

Key function returns key value.

func (UserByMobileRequestValidationError) Reason

Reason function returns reason value.

type UserRequest

type UserRequest struct {
	UserId     int64  `protobuf:"varint,1,opt,name=UserId,proto3" json:"UserId"`        // 用户ID
	ShowId     int64  `protobuf:"varint,2,opt,name=ShowId,proto3" json:"ShowId"`        // 展示ID
	Mobile     string `protobuf:"bytes,3,opt,name=Mobile,proto3" json:"Mobile"`         // 用户手机号
	Username   string `protobuf:"bytes,4,opt,name=Username,proto3" json:"Username"`     // 用户名称
	Nickname   string `protobuf:"bytes,5,opt,name=Nickname,proto3" json:"Nickname"`     // 用户昵称
	RegionCode string `protobuf:"bytes,6,opt,name=RegionCode,proto3" json:"RegionCode"` // 手机号区域码 +86
	// contains filtered or unexported fields
}

查询优先级 userId > showId > mobile > username > nickname

func (*UserRequest) Descriptor deprecated

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

Deprecated: Use UserRequest.ProtoReflect.Descriptor instead.

func (*UserRequest) GetMobile

func (x *UserRequest) GetMobile() string

func (*UserRequest) GetNickname

func (x *UserRequest) GetNickname() string

func (*UserRequest) GetRegionCode

func (x *UserRequest) GetRegionCode() string

func (*UserRequest) GetShowId

func (x *UserRequest) GetShowId() int64

func (*UserRequest) GetUserId

func (x *UserRequest) GetUserId() int64

func (*UserRequest) GetUsername

func (x *UserRequest) GetUsername() string

func (*UserRequest) ProtoMessage

func (*UserRequest) ProtoMessage()

func (*UserRequest) ProtoReflect

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

func (*UserRequest) Reset

func (x *UserRequest) Reset()

func (*UserRequest) String

func (x *UserRequest) String() string

func (*UserRequest) Validate

func (m *UserRequest) Validate() error

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

func (m *UserRequest) ValidateAll() error

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

type UserRequestMultiError

type UserRequestMultiError []error

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

func (UserRequestMultiError) AllErrors

func (m UserRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserRequestMultiError) Error

func (m UserRequestMultiError) Error() string

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

type UserRequestValidationError

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

UserRequestValidationError is the validation error returned by UserRequest.Validate if the designated constraints aren't met.

func (UserRequestValidationError) Cause

Cause function returns cause value.

func (UserRequestValidationError) Error

Error satisfies the builtin error interface

func (UserRequestValidationError) ErrorName

func (e UserRequestValidationError) ErrorName() string

ErrorName returns error name.

func (UserRequestValidationError) Field

Field function returns field value.

func (UserRequestValidationError) Key

Key function returns key value.

func (UserRequestValidationError) Reason

Reason function returns reason value.

type UserResponse

type UserResponse struct {
	Item *Item `protobuf:"bytes,1,opt,name=Item,proto3" json:"Item"` // 用户基本信息
	// contains filtered or unexported fields
}

func (*UserResponse) Descriptor deprecated

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

Deprecated: Use UserResponse.ProtoReflect.Descriptor instead.

func (*UserResponse) GetItem

func (x *UserResponse) GetItem() *Item

func (*UserResponse) ProtoMessage

func (*UserResponse) ProtoMessage()

func (*UserResponse) ProtoReflect

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

func (*UserResponse) Reset

func (x *UserResponse) Reset()

func (*UserResponse) String

func (x *UserResponse) String() string

func (*UserResponse) Validate

func (m *UserResponse) Validate() error

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

func (m *UserResponse) ValidateAll() error

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

type UserResponseMultiError

type UserResponseMultiError []error

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

func (UserResponseMultiError) AllErrors

func (m UserResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserResponseMultiError) Error

func (m UserResponseMultiError) Error() string

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

type UserResponseValidationError

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

UserResponseValidationError is the validation error returned by UserResponse.Validate if the designated constraints aren't met.

func (UserResponseValidationError) Cause

Cause function returns cause value.

func (UserResponseValidationError) Error

Error satisfies the builtin error interface

func (UserResponseValidationError) ErrorName

func (e UserResponseValidationError) ErrorName() string

ErrorName returns error name.

func (UserResponseValidationError) Field

Field function returns field value.

func (UserResponseValidationError) Key

Key function returns key value.

func (UserResponseValidationError) Reason

Reason function returns reason value.

type UsersRequest

type UsersRequest struct {
	UserIds []int64 `protobuf:"varint,1,rep,packed,name=UserIds,proto3" json:"UserIds"` // 多个用户ID array()
	// contains filtered or unexported fields
}

func (*UsersRequest) Descriptor deprecated

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

Deprecated: Use UsersRequest.ProtoReflect.Descriptor instead.

func (*UsersRequest) GetUserIds

func (x *UsersRequest) GetUserIds() []int64

func (*UsersRequest) ProtoMessage

func (*UsersRequest) ProtoMessage()

func (*UsersRequest) ProtoReflect

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

func (*UsersRequest) Reset

func (x *UsersRequest) Reset()

func (*UsersRequest) String

func (x *UsersRequest) String() string

func (*UsersRequest) Validate

func (m *UsersRequest) Validate() error

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

func (m *UsersRequest) ValidateAll() error

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

type UsersRequestMultiError

type UsersRequestMultiError []error

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

func (UsersRequestMultiError) AllErrors

func (m UsersRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UsersRequestMultiError) Error

func (m UsersRequestMultiError) Error() string

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

type UsersRequestValidationError

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

UsersRequestValidationError is the validation error returned by UsersRequest.Validate if the designated constraints aren't met.

func (UsersRequestValidationError) Cause

Cause function returns cause value.

func (UsersRequestValidationError) Error

Error satisfies the builtin error interface

func (UsersRequestValidationError) ErrorName

func (e UsersRequestValidationError) ErrorName() string

ErrorName returns error name.

func (UsersRequestValidationError) Field

Field function returns field value.

func (UsersRequestValidationError) Key

Key function returns key value.

func (UsersRequestValidationError) Reason

Reason function returns reason value.

type WriteOffRequest

type WriteOffRequest struct {
	UserId int64 `protobuf:"varint,1,opt,name=UserId,proto3" json:"UserId"` // 用户UserId
	// contains filtered or unexported fields
}

func (*WriteOffRequest) Descriptor deprecated

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

Deprecated: Use WriteOffRequest.ProtoReflect.Descriptor instead.

func (*WriteOffRequest) GetUserId

func (x *WriteOffRequest) GetUserId() int64

func (*WriteOffRequest) ProtoMessage

func (*WriteOffRequest) ProtoMessage()

func (*WriteOffRequest) ProtoReflect

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

func (*WriteOffRequest) Reset

func (x *WriteOffRequest) Reset()

func (*WriteOffRequest) String

func (x *WriteOffRequest) String() string

func (*WriteOffRequest) Validate

func (m *WriteOffRequest) Validate() error

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

func (m *WriteOffRequest) ValidateAll() error

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

type WriteOffRequestMultiError

type WriteOffRequestMultiError []error

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

func (WriteOffRequestMultiError) AllErrors

func (m WriteOffRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (WriteOffRequestMultiError) Error

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

type WriteOffRequestValidationError

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

WriteOffRequestValidationError is the validation error returned by WriteOffRequest.Validate if the designated constraints aren't met.

func (WriteOffRequestValidationError) Cause

Cause function returns cause value.

func (WriteOffRequestValidationError) Error

Error satisfies the builtin error interface

func (WriteOffRequestValidationError) ErrorName

func (e WriteOffRequestValidationError) ErrorName() string

ErrorName returns error name.

func (WriteOffRequestValidationError) Field

Field function returns field value.

func (WriteOffRequestValidationError) Key

Key function returns key value.

func (WriteOffRequestValidationError) Reason

Reason function returns reason value.

Jump to

Keyboard shortcuts

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