chat

package
v1.0.3 Latest Latest
Warning

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

Go to latest
Published: Mar 7, 2025 License: Apache-2.0 Imports: 24 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_chat_chat_proto protoreflect.FileDescriptor

Functions

func AreaCodeCheck

func AreaCodeCheck(areaCode string) error

func EmailCheck

func EmailCheck(email string) error

func GenerateRandomString

func GenerateRandomString(length int) (string, error)

func PhoneNumberCheck

func PhoneNumberCheck(phoneNumber string) error

func RegisterChatServer

func RegisterChatServer(s *grpc.Server, srv ChatServer)

func UrlToBase64QRCode

func UrlToBase64QRCode(url string, size int) (string, error)

url地址转二维码 并生产base64位字符串

func VerifyAccout

func VerifyAccout(accout string) bool

Types

type AddUserAccountReq

type AddUserAccountReq struct {
	Ip       string            `protobuf:"bytes,1,opt,name=ip,proto3" json:"ip,omitempty"`
	DeviceID string            `protobuf:"bytes,2,opt,name=deviceID,proto3" json:"deviceID,omitempty"`
	Platform int32             `protobuf:"varint,3,opt,name=platform,proto3" json:"platform,omitempty"`
	User     *RegisterUserInfo `protobuf:"bytes,4,opt,name=user,proto3" json:"user,omitempty"`
	// contains filtered or unexported fields
}

func (*AddUserAccountReq) Check

func (x *AddUserAccountReq) Check() error

func (*AddUserAccountReq) Descriptor deprecated

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

Deprecated: Use AddUserAccountReq.ProtoReflect.Descriptor instead.

func (*AddUserAccountReq) GetDeviceID

func (x *AddUserAccountReq) GetDeviceID() string

func (*AddUserAccountReq) GetIp

func (x *AddUserAccountReq) GetIp() string

func (*AddUserAccountReq) GetPlatform

func (x *AddUserAccountReq) GetPlatform() int32

func (*AddUserAccountReq) GetUser

func (x *AddUserAccountReq) GetUser() *RegisterUserInfo

func (*AddUserAccountReq) ProtoMessage

func (*AddUserAccountReq) ProtoMessage()

func (*AddUserAccountReq) ProtoReflect

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

func (*AddUserAccountReq) Reset

func (x *AddUserAccountReq) Reset()

func (*AddUserAccountReq) String

func (x *AddUserAccountReq) String() string

type AddUserAccountResp

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

func (*AddUserAccountResp) Descriptor deprecated

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

Deprecated: Use AddUserAccountResp.ProtoReflect.Descriptor instead.

func (*AddUserAccountResp) ProtoMessage

func (*AddUserAccountResp) ProtoMessage()

func (*AddUserAccountResp) ProtoReflect

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

func (*AddUserAccountResp) Reset

func (x *AddUserAccountResp) Reset()

func (*AddUserAccountResp) String

func (x *AddUserAccountResp) String() string

type BlockContactReq

type BlockContactReq struct {
	UserId        string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
	ContactUserId string `protobuf:"bytes,2,opt,name=contactUserId,proto3" json:"contactUserId,omitempty"`
	// contains filtered or unexported fields
}

func (*BlockContactReq) Descriptor deprecated

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

Deprecated: Use BlockContactReq.ProtoReflect.Descriptor instead.

func (*BlockContactReq) GetContactUserId

func (x *BlockContactReq) GetContactUserId() string

func (*BlockContactReq) GetUserId

func (x *BlockContactReq) GetUserId() string

func (*BlockContactReq) ProtoMessage

func (*BlockContactReq) ProtoMessage()

func (*BlockContactReq) ProtoReflect

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

func (*BlockContactReq) Reset

func (x *BlockContactReq) Reset()

func (*BlockContactReq) String

func (x *BlockContactReq) String() string

type BlockContactResp

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

func (*BlockContactResp) Descriptor deprecated

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

Deprecated: Use BlockContactResp.ProtoReflect.Descriptor instead.

func (*BlockContactResp) ProtoMessage

func (*BlockContactResp) ProtoMessage()

func (*BlockContactResp) ProtoReflect

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

func (*BlockContactResp) Reset

func (x *BlockContactResp) Reset()

func (*BlockContactResp) String

func (x *BlockContactResp) String() string

type CancelBlockReq

type CancelBlockReq struct {
	UserId        string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
	ContactUserId string `protobuf:"bytes,2,opt,name=contactUserId,proto3" json:"contactUserId,omitempty"`
	// contains filtered or unexported fields
}

func (*CancelBlockReq) Descriptor deprecated

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

Deprecated: Use CancelBlockReq.ProtoReflect.Descriptor instead.

func (*CancelBlockReq) GetContactUserId

func (x *CancelBlockReq) GetContactUserId() string

func (*CancelBlockReq) GetUserId

func (x *CancelBlockReq) GetUserId() string

func (*CancelBlockReq) ProtoMessage

func (*CancelBlockReq) ProtoMessage()

func (*CancelBlockReq) ProtoReflect

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

func (*CancelBlockReq) Reset

func (x *CancelBlockReq) Reset()

func (*CancelBlockReq) String

func (x *CancelBlockReq) String() string

type CancelBlockResp

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

func (*CancelBlockResp) Descriptor deprecated

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

Deprecated: Use CancelBlockResp.ProtoReflect.Descriptor instead.

func (*CancelBlockResp) ProtoMessage

func (*CancelBlockResp) ProtoMessage()

func (*CancelBlockResp) ProtoReflect

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

func (*CancelBlockResp) Reset

func (x *CancelBlockResp) Reset()

func (*CancelBlockResp) String

func (x *CancelBlockResp) String() string

type ChangePasswordReq

type ChangePasswordReq struct {
	UserID          string `protobuf:"bytes,1,opt,name=userID,proto3" json:"userID,omitempty"`
	CurrentPassword string `protobuf:"bytes,2,opt,name=currentPassword,proto3" json:"currentPassword,omitempty"`
	NewPassword     string `protobuf:"bytes,3,opt,name=newPassword,proto3" json:"newPassword,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangePasswordReq) Check

func (x *ChangePasswordReq) Check() error

func (*ChangePasswordReq) Descriptor deprecated

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

Deprecated: Use ChangePasswordReq.ProtoReflect.Descriptor instead.

func (*ChangePasswordReq) GetCurrentPassword

func (x *ChangePasswordReq) GetCurrentPassword() string

func (*ChangePasswordReq) GetNewPassword

func (x *ChangePasswordReq) GetNewPassword() string

func (*ChangePasswordReq) GetUserID

func (x *ChangePasswordReq) GetUserID() string

func (*ChangePasswordReq) ProtoMessage

func (*ChangePasswordReq) ProtoMessage()

func (*ChangePasswordReq) ProtoReflect

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

func (*ChangePasswordReq) Reset

func (x *ChangePasswordReq) Reset()

func (*ChangePasswordReq) String

func (x *ChangePasswordReq) String() string

type ChangePasswordResp

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

func (*ChangePasswordResp) Descriptor deprecated

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

Deprecated: Use ChangePasswordResp.ProtoReflect.Descriptor instead.

func (*ChangePasswordResp) ProtoMessage

func (*ChangePasswordResp) ProtoMessage()

func (*ChangePasswordResp) ProtoReflect

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

func (*ChangePasswordResp) Reset

func (x *ChangePasswordResp) Reset()

func (*ChangePasswordResp) String

func (x *ChangePasswordResp) String() string

type ChatClient

type ChatClient interface {
	// Edit personal information - called by the user or an administrator
	UpdateUserInfo(ctx context.Context, in *UpdateUserInfoReq, opts ...grpc.CallOption) (*UpdateUserInfoResp, error)
	AddUserAccount(ctx context.Context, in *AddUserAccountReq, opts ...grpc.CallOption) (*AddUserAccountResp, error)
	// Get user's public information - called by strangers
	SearchUserPublicInfo(ctx context.Context, in *SearchUserPublicInfoReq, opts ...grpc.CallOption) (*SearchUserPublicInfoResp, error)
	FindUserPublicInfo(ctx context.Context, in *FindUserPublicInfoReq, opts ...grpc.CallOption) (*FindUserPublicInfoResp, error)
	// Search user information - called by administrators, other users get public fields
	SearchUserFullInfo(ctx context.Context, in *SearchUserFullInfoReq, opts ...grpc.CallOption) (*SearchUserFullInfoResp, error)
	FindUserFullInfo(ctx context.Context, in *FindUserFullInfoReq, opts ...grpc.CallOption) (*FindUserFullInfoResp, error)
	SendVerifyCode(ctx context.Context, in *SendVerifyCodeReq, opts ...grpc.CallOption) (*SendVerifyCodeResp, error)
	VerifyCode(ctx context.Context, in *VerifyCodeReq, opts ...grpc.CallOption) (*VerifyCodeResp, error)
	RegisterUser(ctx context.Context, in *RegisterUserReq, opts ...grpc.CallOption) (*RegisterUserResp, error)
	Login(ctx context.Context, in *LoginReq, opts ...grpc.CallOption) (*LoginResp, error)
	ResetPassword(ctx context.Context, in *ResetPasswordReq, opts ...grpc.CallOption) (*ResetPasswordResp, error)
	ChangePassword(ctx context.Context, in *ChangePasswordReq, opts ...grpc.CallOption) (*ChangePasswordResp, error)
	CheckUserExist(ctx context.Context, in *CheckUserExistReq, opts ...grpc.CallOption) (*CheckUserExistResp, error)
	DelUserAccount(ctx context.Context, in *DelUserAccountReq, opts ...grpc.CallOption) (*DelUserAccountResp, error)
	FindUserAccount(ctx context.Context, in *FindUserAccountReq, opts ...grpc.CallOption) (*FindUserAccountResp, error)
	FindAccountUser(ctx context.Context, in *FindAccountUserReq, opts ...grpc.CallOption) (*FindAccountUserResp, error)
	OpenIMCallback(ctx context.Context, in *OpenIMCallbackReq, opts ...grpc.CallOption) (*OpenIMCallbackResp, error)
	// Statistics
	UserLoginCount(ctx context.Context, in *UserLoginCountReq, opts ...grpc.CallOption) (*UserLoginCountResp, error)
	SearchUserInfo(ctx context.Context, in *SearchUserInfoReq, opts ...grpc.CallOption) (*SearchUserInfoResp, error)
	// Audio/video call and video meeting
	GetTokenForVideoMeeting(ctx context.Context, in *GetTokenForVideoMeetingReq, opts ...grpc.CallOption) (*GetTokenForVideoMeetingResp, error)
	SetAllowRegister(ctx context.Context, in *SetAllowRegisterReq, opts ...grpc.CallOption) (*SetAllowRegisterResp, error)
	GetAllowRegister(ctx context.Context, in *GetAllowRegisterReq, opts ...grpc.CallOption) (*GetAllowRegisterResp, error)
	// Contact
	GetContactList(ctx context.Context, in *GetContactListReq, opts ...grpc.CallOption) (*GetContactListResp, error)
	CreateContact(ctx context.Context, in *CreateContactReq, opts ...grpc.CallOption) (*CreateContactResp, error)
	DelContact(ctx context.Context, in *DelContactReq, opts ...grpc.CallOption) (*DelContactResp, error)
	IsContact(ctx context.Context, in *IsContactReq, opts ...grpc.CallOption) (*IsContactResp, error)
	BlockContact(ctx context.Context, in *BlockContactReq, opts ...grpc.CallOption) (*BlockContactResp, error)
	CancelBlock(ctx context.Context, in *CancelBlockReq, opts ...grpc.CallOption) (*CancelBlockResp, error)
	UpdateContact(ctx context.Context, in *UpdateContactReq, opts ...grpc.CallOption) (*UpdateContactResp, error)
}

ChatClient is the client API for Chat service.

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

func NewChatClient

func NewChatClient(cc grpc.ClientConnInterface) ChatClient

type ChatServer

type ChatServer interface {
	// Edit personal information - called by the user or an administrator
	UpdateUserInfo(context.Context, *UpdateUserInfoReq) (*UpdateUserInfoResp, error)
	AddUserAccount(context.Context, *AddUserAccountReq) (*AddUserAccountResp, error)
	// Get user's public information - called by strangers
	SearchUserPublicInfo(context.Context, *SearchUserPublicInfoReq) (*SearchUserPublicInfoResp, error)
	FindUserPublicInfo(context.Context, *FindUserPublicInfoReq) (*FindUserPublicInfoResp, error)
	// Search user information - called by administrators, other users get public fields
	SearchUserFullInfo(context.Context, *SearchUserFullInfoReq) (*SearchUserFullInfoResp, error)
	FindUserFullInfo(context.Context, *FindUserFullInfoReq) (*FindUserFullInfoResp, error)
	SendVerifyCode(context.Context, *SendVerifyCodeReq) (*SendVerifyCodeResp, error)
	VerifyCode(context.Context, *VerifyCodeReq) (*VerifyCodeResp, error)
	RegisterUser(context.Context, *RegisterUserReq) (*RegisterUserResp, error)
	Login(context.Context, *LoginReq) (*LoginResp, error)
	ResetPassword(context.Context, *ResetPasswordReq) (*ResetPasswordResp, error)
	ChangePassword(context.Context, *ChangePasswordReq) (*ChangePasswordResp, error)
	CheckUserExist(context.Context, *CheckUserExistReq) (*CheckUserExistResp, error)
	DelUserAccount(context.Context, *DelUserAccountReq) (*DelUserAccountResp, error)
	FindUserAccount(context.Context, *FindUserAccountReq) (*FindUserAccountResp, error)
	FindAccountUser(context.Context, *FindAccountUserReq) (*FindAccountUserResp, error)
	OpenIMCallback(context.Context, *OpenIMCallbackReq) (*OpenIMCallbackResp, error)
	// Statistics
	UserLoginCount(context.Context, *UserLoginCountReq) (*UserLoginCountResp, error)
	SearchUserInfo(context.Context, *SearchUserInfoReq) (*SearchUserInfoResp, error)
	// Audio/video call and video meeting
	GetTokenForVideoMeeting(context.Context, *GetTokenForVideoMeetingReq) (*GetTokenForVideoMeetingResp, error)
	SetAllowRegister(context.Context, *SetAllowRegisterReq) (*SetAllowRegisterResp, error)
	GetAllowRegister(context.Context, *GetAllowRegisterReq) (*GetAllowRegisterResp, error)
	// Contact
	GetContactList(context.Context, *GetContactListReq) (*GetContactListResp, error)
	CreateContact(context.Context, *CreateContactReq) (*CreateContactResp, error)
	DelContact(context.Context, *DelContactReq) (*DelContactResp, error)
	IsContact(context.Context, *IsContactReq) (*IsContactResp, error)
	BlockContact(context.Context, *BlockContactReq) (*BlockContactResp, error)
	CancelBlock(context.Context, *CancelBlockReq) (*CancelBlockResp, error)
	UpdateContact(context.Context, *UpdateContactReq) (*UpdateContactResp, error)
}

ChatServer is the server API for Chat service.

type CheckUserExistReq

type CheckUserExistReq struct {
	User *RegisterUserInfo `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
	// contains filtered or unexported fields
}

func (*CheckUserExistReq) Descriptor deprecated

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

Deprecated: Use CheckUserExistReq.ProtoReflect.Descriptor instead.

func (*CheckUserExistReq) GetUser

func (x *CheckUserExistReq) GetUser() *RegisterUserInfo

func (*CheckUserExistReq) ProtoMessage

func (*CheckUserExistReq) ProtoMessage()

func (*CheckUserExistReq) ProtoReflect

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

func (*CheckUserExistReq) Reset

func (x *CheckUserExistReq) Reset()

func (*CheckUserExistReq) String

func (x *CheckUserExistReq) String() string

type CheckUserExistResp

type CheckUserExistResp struct {
	Userid       string `protobuf:"bytes,1,opt,name=userid,proto3" json:"userid,omitempty"`
	IsRegistered bool   `protobuf:"varint,2,opt,name=isRegistered,proto3" json:"isRegistered,omitempty"`
	// contains filtered or unexported fields
}

func (*CheckUserExistResp) Descriptor deprecated

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

Deprecated: Use CheckUserExistResp.ProtoReflect.Descriptor instead.

func (*CheckUserExistResp) GetIsRegistered

func (x *CheckUserExistResp) GetIsRegistered() bool

func (*CheckUserExistResp) GetUserid

func (x *CheckUserExistResp) GetUserid() string

func (*CheckUserExistResp) ProtoMessage

func (*CheckUserExistResp) ProtoMessage()

func (*CheckUserExistResp) ProtoReflect

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

func (*CheckUserExistResp) Reset

func (x *CheckUserExistResp) Reset()

func (*CheckUserExistResp) String

func (x *CheckUserExistResp) String() string

type CreateContactReq

type CreateContactReq struct {
	UserId        string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
	ContactUserId string `protobuf:"bytes,2,opt,name=contactUserId,proto3" json:"contactUserId,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateContactReq) Descriptor deprecated

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

Deprecated: Use CreateContactReq.ProtoReflect.Descriptor instead.

func (*CreateContactReq) GetContactUserId

func (x *CreateContactReq) GetContactUserId() string

func (*CreateContactReq) GetUserId

func (x *CreateContactReq) GetUserId() string

func (*CreateContactReq) ProtoMessage

func (*CreateContactReq) ProtoMessage()

func (*CreateContactReq) ProtoReflect

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

func (*CreateContactReq) Reset

func (x *CreateContactReq) Reset()

func (*CreateContactReq) String

func (x *CreateContactReq) String() string

type CreateContactResp

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

func (*CreateContactResp) Descriptor deprecated

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

Deprecated: Use CreateContactResp.ProtoReflect.Descriptor instead.

func (*CreateContactResp) ProtoMessage

func (*CreateContactResp) ProtoMessage()

func (*CreateContactResp) ProtoReflect

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

func (*CreateContactResp) Reset

func (x *CreateContactResp) Reset()

func (*CreateContactResp) String

func (x *CreateContactResp) String() string

type DelContactReq

type DelContactReq struct {
	UserId        string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
	ContactUserId string `protobuf:"bytes,2,opt,name=contactUserId,proto3" json:"contactUserId,omitempty"`
	// contains filtered or unexported fields
}

func (*DelContactReq) Descriptor deprecated

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

Deprecated: Use DelContactReq.ProtoReflect.Descriptor instead.

func (*DelContactReq) GetContactUserId

func (x *DelContactReq) GetContactUserId() string

func (*DelContactReq) GetUserId

func (x *DelContactReq) GetUserId() string

func (*DelContactReq) ProtoMessage

func (*DelContactReq) ProtoMessage()

func (*DelContactReq) ProtoReflect

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

func (*DelContactReq) Reset

func (x *DelContactReq) Reset()

func (*DelContactReq) String

func (x *DelContactReq) String() string

type DelContactResp

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

func (*DelContactResp) Descriptor deprecated

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

Deprecated: Use DelContactResp.ProtoReflect.Descriptor instead.

func (*DelContactResp) ProtoMessage

func (*DelContactResp) ProtoMessage()

func (*DelContactResp) ProtoReflect

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

func (*DelContactResp) Reset

func (x *DelContactResp) Reset()

func (*DelContactResp) String

func (x *DelContactResp) String() string

type DelUserAccountReq

type DelUserAccountReq struct {
	UserIDs []string `protobuf:"bytes,1,rep,name=userIDs,proto3" json:"userIDs,omitempty"`
	// contains filtered or unexported fields
}

func (*DelUserAccountReq) Descriptor deprecated

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

Deprecated: Use DelUserAccountReq.ProtoReflect.Descriptor instead.

func (*DelUserAccountReq) GetUserIDs

func (x *DelUserAccountReq) GetUserIDs() []string

func (*DelUserAccountReq) ProtoMessage

func (*DelUserAccountReq) ProtoMessage()

func (*DelUserAccountReq) ProtoReflect

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

func (*DelUserAccountReq) Reset

func (x *DelUserAccountReq) Reset()

func (*DelUserAccountReq) String

func (x *DelUserAccountReq) String() string

type DelUserAccountResp

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

func (*DelUserAccountResp) Descriptor deprecated

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

Deprecated: Use DelUserAccountResp.ProtoReflect.Descriptor instead.

func (*DelUserAccountResp) ProtoMessage

func (*DelUserAccountResp) ProtoMessage()

func (*DelUserAccountResp) ProtoReflect

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

func (*DelUserAccountResp) Reset

func (x *DelUserAccountResp) Reset()

func (*DelUserAccountResp) String

func (x *DelUserAccountResp) String() string

type DownloadLinkReq

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

func (*DownloadLinkReq) Descriptor deprecated

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

Deprecated: Use DownloadLinkReq.ProtoReflect.Descriptor instead.

func (*DownloadLinkReq) GetUserID

func (x *DownloadLinkReq) GetUserID() string

func (*DownloadLinkReq) ProtoMessage

func (*DownloadLinkReq) ProtoMessage()

func (*DownloadLinkReq) ProtoReflect

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

func (*DownloadLinkReq) Reset

func (x *DownloadLinkReq) Reset()

func (*DownloadLinkReq) String

func (x *DownloadLinkReq) String() string

type FindAccountUserReq

type FindAccountUserReq struct {
	Accounts []string `protobuf:"bytes,1,rep,name=accounts,proto3" json:"accounts,omitempty"`
	// contains filtered or unexported fields
}

func (*FindAccountUserReq) Check

func (x *FindAccountUserReq) Check() error

func (*FindAccountUserReq) Descriptor deprecated

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

Deprecated: Use FindAccountUserReq.ProtoReflect.Descriptor instead.

func (*FindAccountUserReq) GetAccounts

func (x *FindAccountUserReq) GetAccounts() []string

func (*FindAccountUserReq) ProtoMessage

func (*FindAccountUserReq) ProtoMessage()

func (*FindAccountUserReq) ProtoReflect

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

func (*FindAccountUserReq) Reset

func (x *FindAccountUserReq) Reset()

func (*FindAccountUserReq) String

func (x *FindAccountUserReq) String() string

type FindAccountUserResp

type FindAccountUserResp struct {
	AccountUserMap map[string]string `` // account  userID
	/* 169-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*FindAccountUserResp) Descriptor deprecated

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

Deprecated: Use FindAccountUserResp.ProtoReflect.Descriptor instead.

func (*FindAccountUserResp) GetAccountUserMap

func (x *FindAccountUserResp) GetAccountUserMap() map[string]string

func (*FindAccountUserResp) ProtoMessage

func (*FindAccountUserResp) ProtoMessage()

func (*FindAccountUserResp) ProtoReflect

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

func (*FindAccountUserResp) Reset

func (x *FindAccountUserResp) Reset()

func (*FindAccountUserResp) String

func (x *FindAccountUserResp) String() string

type FindUserAccountReq

type FindUserAccountReq struct {
	UserIDs []string `protobuf:"bytes,1,rep,name=userIDs,proto3" json:"userIDs,omitempty"`
	// contains filtered or unexported fields
}

func (*FindUserAccountReq) Check

func (x *FindUserAccountReq) Check() error

func (*FindUserAccountReq) Descriptor deprecated

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

Deprecated: Use FindUserAccountReq.ProtoReflect.Descriptor instead.

func (*FindUserAccountReq) GetUserIDs

func (x *FindUserAccountReq) GetUserIDs() []string

func (*FindUserAccountReq) ProtoMessage

func (*FindUserAccountReq) ProtoMessage()

func (*FindUserAccountReq) ProtoReflect

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

func (*FindUserAccountReq) Reset

func (x *FindUserAccountReq) Reset()

func (*FindUserAccountReq) String

func (x *FindUserAccountReq) String() string

type FindUserAccountResp

type FindUserAccountResp struct {
	UserAccountMap map[string]string `` // userID  account
	/* 169-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*FindUserAccountResp) Descriptor deprecated

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

Deprecated: Use FindUserAccountResp.ProtoReflect.Descriptor instead.

func (*FindUserAccountResp) GetUserAccountMap

func (x *FindUserAccountResp) GetUserAccountMap() map[string]string

func (*FindUserAccountResp) ProtoMessage

func (*FindUserAccountResp) ProtoMessage()

func (*FindUserAccountResp) ProtoReflect

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

func (*FindUserAccountResp) Reset

func (x *FindUserAccountResp) Reset()

func (*FindUserAccountResp) String

func (x *FindUserAccountResp) String() string

type FindUserFullInfoReq

type FindUserFullInfoReq struct {
	UserIDs []string `protobuf:"bytes,1,rep,name=userIDs,proto3" json:"userIDs,omitempty"`
	// contains filtered or unexported fields
}

func (*FindUserFullInfoReq) Check

func (x *FindUserFullInfoReq) Check() error

func (*FindUserFullInfoReq) Descriptor deprecated

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

Deprecated: Use FindUserFullInfoReq.ProtoReflect.Descriptor instead.

func (*FindUserFullInfoReq) GetUserIDs

func (x *FindUserFullInfoReq) GetUserIDs() []string

func (*FindUserFullInfoReq) ProtoMessage

func (*FindUserFullInfoReq) ProtoMessage()

func (*FindUserFullInfoReq) ProtoReflect

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

func (*FindUserFullInfoReq) Reset

func (x *FindUserFullInfoReq) Reset()

func (*FindUserFullInfoReq) String

func (x *FindUserFullInfoReq) String() string

type FindUserFullInfoResp

type FindUserFullInfoResp struct {
	Users []*common.UserFullInfo `protobuf:"bytes,1,rep,name=users,proto3" json:"users,omitempty"`
	// contains filtered or unexported fields
}

func (*FindUserFullInfoResp) Descriptor deprecated

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

Deprecated: Use FindUserFullInfoResp.ProtoReflect.Descriptor instead.

func (*FindUserFullInfoResp) GetUsers

func (x *FindUserFullInfoResp) GetUsers() []*common.UserFullInfo

func (*FindUserFullInfoResp) ProtoMessage

func (*FindUserFullInfoResp) ProtoMessage()

func (*FindUserFullInfoResp) ProtoReflect

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

func (*FindUserFullInfoResp) Reset

func (x *FindUserFullInfoResp) Reset()

func (*FindUserFullInfoResp) String

func (x *FindUserFullInfoResp) String() string

type FindUserPublicInfoReq

type FindUserPublicInfoReq struct {
	UserIDs []string `protobuf:"bytes,1,rep,name=userIDs,proto3" json:"userIDs,omitempty"`
	// contains filtered or unexported fields
}

func (*FindUserPublicInfoReq) Check

func (x *FindUserPublicInfoReq) Check() error

func (*FindUserPublicInfoReq) Descriptor deprecated

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

Deprecated: Use FindUserPublicInfoReq.ProtoReflect.Descriptor instead.

func (*FindUserPublicInfoReq) GetUserIDs

func (x *FindUserPublicInfoReq) GetUserIDs() []string

func (*FindUserPublicInfoReq) ProtoMessage

func (*FindUserPublicInfoReq) ProtoMessage()

func (*FindUserPublicInfoReq) ProtoReflect

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

func (*FindUserPublicInfoReq) Reset

func (x *FindUserPublicInfoReq) Reset()

func (*FindUserPublicInfoReq) String

func (x *FindUserPublicInfoReq) String() string

type FindUserPublicInfoResp

type FindUserPublicInfoResp struct {
	Users []*common.UserPublicInfo `protobuf:"bytes,1,rep,name=users,proto3" json:"users,omitempty"`
	// contains filtered or unexported fields
}

func (*FindUserPublicInfoResp) Descriptor deprecated

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

Deprecated: Use FindUserPublicInfoResp.ProtoReflect.Descriptor instead.

func (*FindUserPublicInfoResp) GetUsers

func (x *FindUserPublicInfoResp) GetUsers() []*common.UserPublicInfo

func (*FindUserPublicInfoResp) ProtoMessage

func (*FindUserPublicInfoResp) ProtoMessage()

func (*FindUserPublicInfoResp) ProtoReflect

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

func (*FindUserPublicInfoResp) Reset

func (x *FindUserPublicInfoResp) Reset()

func (*FindUserPublicInfoResp) String

func (x *FindUserPublicInfoResp) String() string

type GetAllowRegisterReq

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

func (*GetAllowRegisterReq) Descriptor deprecated

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

Deprecated: Use GetAllowRegisterReq.ProtoReflect.Descriptor instead.

func (*GetAllowRegisterReq) ProtoMessage

func (*GetAllowRegisterReq) ProtoMessage()

func (*GetAllowRegisterReq) ProtoReflect

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

func (*GetAllowRegisterReq) Reset

func (x *GetAllowRegisterReq) Reset()

func (*GetAllowRegisterReq) String

func (x *GetAllowRegisterReq) String() string

type GetAllowRegisterResp

type GetAllowRegisterResp struct {
	AllowRegister bool `protobuf:"varint,1,opt,name=allowRegister,proto3" json:"allowRegister,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAllowRegisterResp) Descriptor deprecated

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

Deprecated: Use GetAllowRegisterResp.ProtoReflect.Descriptor instead.

func (*GetAllowRegisterResp) GetAllowRegister

func (x *GetAllowRegisterResp) GetAllowRegister() bool

func (*GetAllowRegisterResp) ProtoMessage

func (*GetAllowRegisterResp) ProtoMessage()

func (*GetAllowRegisterResp) ProtoReflect

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

func (*GetAllowRegisterResp) Reset

func (x *GetAllowRegisterResp) Reset()

func (*GetAllowRegisterResp) String

func (x *GetAllowRegisterResp) String() string

type GetContactListReq

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

func (*GetContactListReq) Descriptor deprecated

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

Deprecated: Use GetContactListReq.ProtoReflect.Descriptor instead.

func (*GetContactListReq) GetUserIDs

func (x *GetContactListReq) GetUserIDs() string

func (*GetContactListReq) ProtoMessage

func (*GetContactListReq) ProtoMessage()

func (*GetContactListReq) ProtoReflect

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

func (*GetContactListReq) Reset

func (x *GetContactListReq) Reset()

func (*GetContactListReq) String

func (x *GetContactListReq) String() string

type GetContactListResp

type GetContactListResp struct {
	Users []*common.ContactFullInfo `protobuf:"bytes,1,rep,name=users,proto3" json:"users,omitempty"`
	// contains filtered or unexported fields
}

func (*GetContactListResp) Descriptor deprecated

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

Deprecated: Use GetContactListResp.ProtoReflect.Descriptor instead.

func (*GetContactListResp) GetUsers

func (x *GetContactListResp) GetUsers() []*common.ContactFullInfo

func (*GetContactListResp) ProtoMessage

func (*GetContactListResp) ProtoMessage()

func (*GetContactListResp) ProtoReflect

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

func (*GetContactListResp) Reset

func (x *GetContactListResp) Reset()

func (*GetContactListResp) String

func (x *GetContactListResp) String() string

type GetTokenForVideoMeetingReq

type GetTokenForVideoMeetingReq struct {
	Room     string `protobuf:"bytes,1,opt,name=room,proto3" json:"room,omitempty"`
	Identity string `protobuf:"bytes,2,opt,name=identity,proto3" json:"identity,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTokenForVideoMeetingReq) Check

func (x *GetTokenForVideoMeetingReq) Check() error

func (*GetTokenForVideoMeetingReq) Descriptor deprecated

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

Deprecated: Use GetTokenForVideoMeetingReq.ProtoReflect.Descriptor instead.

func (*GetTokenForVideoMeetingReq) GetIdentity

func (x *GetTokenForVideoMeetingReq) GetIdentity() string

func (*GetTokenForVideoMeetingReq) GetRoom

func (x *GetTokenForVideoMeetingReq) GetRoom() string

func (*GetTokenForVideoMeetingReq) ProtoMessage

func (*GetTokenForVideoMeetingReq) ProtoMessage()

func (*GetTokenForVideoMeetingReq) ProtoReflect

func (*GetTokenForVideoMeetingReq) Reset

func (x *GetTokenForVideoMeetingReq) Reset()

func (*GetTokenForVideoMeetingReq) String

func (x *GetTokenForVideoMeetingReq) String() string

type GetTokenForVideoMeetingResp

type GetTokenForVideoMeetingResp struct {
	ServerUrl string `protobuf:"bytes,1,opt,name=serverUrl,proto3" json:"serverUrl,omitempty"`
	Token     string `protobuf:"bytes,2,opt,name=token,proto3" json:"token,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTokenForVideoMeetingResp) Descriptor deprecated

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

Deprecated: Use GetTokenForVideoMeetingResp.ProtoReflect.Descriptor instead.

func (*GetTokenForVideoMeetingResp) GetServerUrl

func (x *GetTokenForVideoMeetingResp) GetServerUrl() string

func (*GetTokenForVideoMeetingResp) GetToken

func (x *GetTokenForVideoMeetingResp) GetToken() string

func (*GetTokenForVideoMeetingResp) ProtoMessage

func (*GetTokenForVideoMeetingResp) ProtoMessage()

func (*GetTokenForVideoMeetingResp) ProtoReflect

func (*GetTokenForVideoMeetingResp) Reset

func (x *GetTokenForVideoMeetingResp) Reset()

func (*GetTokenForVideoMeetingResp) String

func (x *GetTokenForVideoMeetingResp) String() string

type IsContactReq

type IsContactReq struct {
	UserId        string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
	ContactUserId string `protobuf:"bytes,2,opt,name=contactUserId,proto3" json:"contactUserId,omitempty"`
	// contains filtered or unexported fields
}

func (*IsContactReq) Descriptor deprecated

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

Deprecated: Use IsContactReq.ProtoReflect.Descriptor instead.

func (*IsContactReq) GetContactUserId

func (x *IsContactReq) GetContactUserId() string

func (*IsContactReq) GetUserId

func (x *IsContactReq) GetUserId() string

func (*IsContactReq) ProtoMessage

func (*IsContactReq) ProtoMessage()

func (*IsContactReq) ProtoReflect

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

func (*IsContactReq) Reset

func (x *IsContactReq) Reset()

func (*IsContactReq) String

func (x *IsContactReq) String() string

type IsContactResp

type IsContactResp struct {
	InUserIdContact int32  `protobuf:"varint,1,opt,name=inUserIdContact,proto3" json:"inUserIdContact,omitempty"`
	PublicKey       string `protobuf:"bytes,2,opt,name=publicKey,proto3" json:"publicKey,omitempty"`
	// contains filtered or unexported fields
}

func (*IsContactResp) Descriptor deprecated

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

Deprecated: Use IsContactResp.ProtoReflect.Descriptor instead.

func (*IsContactResp) GetInUserIdContact

func (x *IsContactResp) GetInUserIdContact() int32

func (*IsContactResp) GetPublicKey

func (x *IsContactResp) GetPublicKey() string

func (*IsContactResp) ProtoMessage

func (*IsContactResp) ProtoMessage()

func (*IsContactResp) ProtoReflect

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

func (*IsContactResp) Reset

func (x *IsContactResp) Reset()

func (*IsContactResp) String

func (x *IsContactResp) String() string

type LoginReq

type LoginReq struct {
	AreaCode    string `protobuf:"bytes,1,opt,name=areaCode,proto3" json:"areaCode,omitempty"`
	PhoneNumber string `protobuf:"bytes,2,opt,name=phoneNumber,proto3" json:"phoneNumber,omitempty"`
	VerifyCode  string `protobuf:"bytes,3,opt,name=verifyCode,proto3" json:"verifyCode,omitempty"`
	Account     string `protobuf:"bytes,4,opt,name=account,proto3" json:"account,omitempty"`
	Password    string `protobuf:"bytes,5,opt,name=password,proto3" json:"password,omitempty"`
	Platform    int32  `protobuf:"varint,6,opt,name=platform,proto3" json:"platform,omitempty"`
	DeviceID    string `protobuf:"bytes,7,opt,name=deviceID,proto3" json:"deviceID,omitempty"`
	Ip          string `protobuf:"bytes,8,opt,name=ip,proto3" json:"ip,omitempty"`
	Email       string `protobuf:"bytes,9,opt,name=email,proto3" json:"email,omitempty"`
	Address     string `protobuf:"bytes,10,opt,name=address,proto3" json:"address,omitempty"`
	// contains filtered or unexported fields
}

func (*LoginReq) Check

func (x *LoginReq) Check() error

func (*LoginReq) Descriptor deprecated

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

Deprecated: Use LoginReq.ProtoReflect.Descriptor instead.

func (*LoginReq) GetAccount

func (x *LoginReq) GetAccount() string

func (*LoginReq) GetAddress

func (x *LoginReq) GetAddress() string

func (*LoginReq) GetAreaCode

func (x *LoginReq) GetAreaCode() string

func (*LoginReq) GetDeviceID

func (x *LoginReq) GetDeviceID() string

func (*LoginReq) GetEmail

func (x *LoginReq) GetEmail() string

func (*LoginReq) GetIp

func (x *LoginReq) GetIp() string

func (*LoginReq) GetPassword

func (x *LoginReq) GetPassword() string

func (*LoginReq) GetPhoneNumber

func (x *LoginReq) GetPhoneNumber() string

func (*LoginReq) GetPlatform

func (x *LoginReq) GetPlatform() int32

func (*LoginReq) GetVerifyCode

func (x *LoginReq) GetVerifyCode() string

func (*LoginReq) ProtoMessage

func (*LoginReq) ProtoMessage()

func (*LoginReq) ProtoReflect

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

func (*LoginReq) Reset

func (x *LoginReq) Reset()

func (*LoginReq) String

func (x *LoginReq) String() string

type LoginResp

type LoginResp struct {
	ChatToken string `protobuf:"bytes,2,opt,name=chatToken,proto3" json:"chatToken,omitempty"`
	UserID    string `protobuf:"bytes,3,opt,name=userID,proto3" json:"userID,omitempty"`
	Account   string `protobuf:"bytes,4,opt,name=account,proto3" json:"account,omitempty"`
	NickName  string `protobuf:"bytes,5,opt,name=nickName,proto3" json:"nickName,omitempty"`
	SurName   string `protobuf:"bytes,6,opt,name=surName,proto3" json:"surName,omitempty"`
	Name      string `protobuf:"bytes,7,opt,name=name,proto3" json:"name,omitempty"`
	FaceUrl   string `protobuf:"bytes,8,opt,name=faceUrl,proto3" json:"faceUrl,omitempty"`
	QrcodeUrl string `protobuf:"bytes,9,opt,name=qrcodeUrl,proto3" json:"qrcodeUrl,omitempty"`
	// contains filtered or unexported fields
}

func (*LoginResp) Descriptor deprecated

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

Deprecated: Use LoginResp.ProtoReflect.Descriptor instead.

func (*LoginResp) GetAccount

func (x *LoginResp) GetAccount() string

func (*LoginResp) GetChatToken

func (x *LoginResp) GetChatToken() string

func (*LoginResp) GetFaceUrl

func (x *LoginResp) GetFaceUrl() string

func (*LoginResp) GetName

func (x *LoginResp) GetName() string

func (*LoginResp) GetNickName

func (x *LoginResp) GetNickName() string

func (*LoginResp) GetQrcodeUrl

func (x *LoginResp) GetQrcodeUrl() string

func (*LoginResp) GetSurName

func (x *LoginResp) GetSurName() string

func (*LoginResp) GetUserID

func (x *LoginResp) GetUserID() string

func (*LoginResp) ProtoMessage

func (*LoginResp) ProtoMessage()

func (*LoginResp) ProtoReflect

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

func (*LoginResp) Reset

func (x *LoginResp) Reset()

func (*LoginResp) String

func (x *LoginResp) String() string

type OpenIMCallbackReq

type OpenIMCallbackReq struct {
	Command string `protobuf:"bytes,1,opt,name=command,proto3" json:"command,omitempty"`
	Body    string `protobuf:"bytes,2,opt,name=body,proto3" json:"body,omitempty"`
	// contains filtered or unexported fields
}

func (*OpenIMCallbackReq) Descriptor deprecated

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

Deprecated: Use OpenIMCallbackReq.ProtoReflect.Descriptor instead.

func (*OpenIMCallbackReq) GetBody

func (x *OpenIMCallbackReq) GetBody() string

func (*OpenIMCallbackReq) GetCommand

func (x *OpenIMCallbackReq) GetCommand() string

func (*OpenIMCallbackReq) ProtoMessage

func (*OpenIMCallbackReq) ProtoMessage()

func (*OpenIMCallbackReq) ProtoReflect

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

func (*OpenIMCallbackReq) Reset

func (x *OpenIMCallbackReq) Reset()

func (*OpenIMCallbackReq) String

func (x *OpenIMCallbackReq) String() string

type OpenIMCallbackResp

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

func (*OpenIMCallbackResp) Descriptor deprecated

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

Deprecated: Use OpenIMCallbackResp.ProtoReflect.Descriptor instead.

func (*OpenIMCallbackResp) ProtoMessage

func (*OpenIMCallbackResp) ProtoMessage()

func (*OpenIMCallbackResp) ProtoReflect

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

func (*OpenIMCallbackResp) Reset

func (x *OpenIMCallbackResp) Reset()

func (*OpenIMCallbackResp) String

func (x *OpenIMCallbackResp) String() string

type RegisterUserInfo

type RegisterUserInfo struct {
	UserID       string `protobuf:"bytes,1,opt,name=userID,proto3" json:"userID,omitempty"`
	Nickname     string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname,omitempty"`
	FaceURL      string `protobuf:"bytes,3,opt,name=faceURL,proto3" json:"faceURL,omitempty"`
	Birth        int64  `protobuf:"varint,4,opt,name=birth,proto3" json:"birth,omitempty"`
	Gender       int32  `protobuf:"varint,5,opt,name=gender,proto3" json:"gender,omitempty"`
	AreaCode     string `protobuf:"bytes,6,opt,name=areaCode,proto3" json:"areaCode,omitempty"`
	PhoneNumber  string `protobuf:"bytes,7,opt,name=phoneNumber,proto3" json:"phoneNumber,omitempty"`
	Email        string `protobuf:"bytes,8,opt,name=email,proto3" json:"email,omitempty"`
	Account      string `protobuf:"bytes,9,opt,name=account,proto3" json:"account,omitempty"`
	Password     string `protobuf:"bytes,10,opt,name=password,proto3" json:"password,omitempty"`
	RegisterType int32  `protobuf:"varint,11,opt,name=RegisterType,proto3" json:"RegisterType,omitempty"`
	PublicKey    string `protobuf:"bytes,12,opt,name=publicKey,proto3" json:"publicKey,omitempty"`
	Address      string `protobuf:"bytes,13,opt,name=address,proto3" json:"address,omitempty"`
	Surname      string `protobuf:"bytes,14,opt,name=surname,proto3" json:"surname,omitempty"`
	Name         string `protobuf:"bytes,15,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*RegisterUserInfo) Descriptor deprecated

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

Deprecated: Use RegisterUserInfo.ProtoReflect.Descriptor instead.

func (*RegisterUserInfo) GetAccount

func (x *RegisterUserInfo) GetAccount() string

func (*RegisterUserInfo) GetAddress

func (x *RegisterUserInfo) GetAddress() string

func (*RegisterUserInfo) GetAreaCode

func (x *RegisterUserInfo) GetAreaCode() string

func (*RegisterUserInfo) GetBirth

func (x *RegisterUserInfo) GetBirth() int64

func (*RegisterUserInfo) GetEmail

func (x *RegisterUserInfo) GetEmail() string

func (*RegisterUserInfo) GetFaceURL

func (x *RegisterUserInfo) GetFaceURL() string

func (*RegisterUserInfo) GetGender

func (x *RegisterUserInfo) GetGender() int32

func (*RegisterUserInfo) GetName

func (x *RegisterUserInfo) GetName() string

func (*RegisterUserInfo) GetNickname

func (x *RegisterUserInfo) GetNickname() string

func (*RegisterUserInfo) GetPassword

func (x *RegisterUserInfo) GetPassword() string

func (*RegisterUserInfo) GetPhoneNumber

func (x *RegisterUserInfo) GetPhoneNumber() string

func (*RegisterUserInfo) GetPublicKey

func (x *RegisterUserInfo) GetPublicKey() string

func (*RegisterUserInfo) GetRegisterType

func (x *RegisterUserInfo) GetRegisterType() int32

func (*RegisterUserInfo) GetSurname

func (x *RegisterUserInfo) GetSurname() string

func (*RegisterUserInfo) GetUserID

func (x *RegisterUserInfo) GetUserID() string

func (*RegisterUserInfo) ProtoMessage

func (*RegisterUserInfo) ProtoMessage()

func (*RegisterUserInfo) ProtoReflect

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

func (*RegisterUserInfo) Reset

func (x *RegisterUserInfo) Reset()

func (*RegisterUserInfo) String

func (x *RegisterUserInfo) String() string

type RegisterUserReq

type RegisterUserReq struct {
	InvitationCode string            `protobuf:"bytes,1,opt,name=invitationCode,proto3" json:"invitationCode,omitempty"`
	VerifyCode     string            `protobuf:"bytes,2,opt,name=verifyCode,proto3" json:"verifyCode,omitempty"`
	Ip             string            `protobuf:"bytes,3,opt,name=ip,proto3" json:"ip,omitempty"`
	DeviceID       string            `protobuf:"bytes,4,opt,name=deviceID,proto3" json:"deviceID,omitempty"`
	Platform       int32             `protobuf:"varint,5,opt,name=platform,proto3" json:"platform,omitempty"`
	AutoLogin      bool              `protobuf:"varint,6,opt,name=autoLogin,proto3" json:"autoLogin,omitempty"`
	User           *RegisterUserInfo `protobuf:"bytes,7,opt,name=user,proto3" json:"user,omitempty"`
	// contains filtered or unexported fields
}

func (*RegisterUserReq) Check

func (x *RegisterUserReq) Check() error

func (*RegisterUserReq) Descriptor deprecated

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

Deprecated: Use RegisterUserReq.ProtoReflect.Descriptor instead.

func (*RegisterUserReq) GetAutoLogin

func (x *RegisterUserReq) GetAutoLogin() bool

func (*RegisterUserReq) GetDeviceID

func (x *RegisterUserReq) GetDeviceID() string

func (*RegisterUserReq) GetInvitationCode

func (x *RegisterUserReq) GetInvitationCode() string

func (*RegisterUserReq) GetIp

func (x *RegisterUserReq) GetIp() string

func (*RegisterUserReq) GetPlatform

func (x *RegisterUserReq) GetPlatform() int32

func (*RegisterUserReq) GetUser

func (x *RegisterUserReq) GetUser() *RegisterUserInfo

func (*RegisterUserReq) GetVerifyCode

func (x *RegisterUserReq) GetVerifyCode() string

func (*RegisterUserReq) ProtoMessage

func (*RegisterUserReq) ProtoMessage()

func (*RegisterUserReq) ProtoReflect

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

func (*RegisterUserReq) Reset

func (x *RegisterUserReq) Reset()

func (*RegisterUserReq) String

func (x *RegisterUserReq) String() string

type RegisterUserResp

type RegisterUserResp struct {
	UserID    string `protobuf:"bytes,1,opt,name=userID,proto3" json:"userID,omitempty"`
	ChatToken string `protobuf:"bytes,3,opt,name=chatToken,proto3" json:"chatToken,omitempty"`
	// contains filtered or unexported fields
}

func (*RegisterUserResp) Descriptor deprecated

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

Deprecated: Use RegisterUserResp.ProtoReflect.Descriptor instead.

func (*RegisterUserResp) GetChatToken

func (x *RegisterUserResp) GetChatToken() string

func (*RegisterUserResp) GetUserID

func (x *RegisterUserResp) GetUserID() string

func (*RegisterUserResp) ProtoMessage

func (*RegisterUserResp) ProtoMessage()

func (*RegisterUserResp) ProtoReflect

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

func (*RegisterUserResp) Reset

func (x *RegisterUserResp) Reset()

func (*RegisterUserResp) String

func (x *RegisterUserResp) String() string

type ResetPasswordReq

type ResetPasswordReq struct {
	AreaCode    string `protobuf:"bytes,1,opt,name=areaCode,proto3" json:"areaCode,omitempty"`
	PhoneNumber string `protobuf:"bytes,2,opt,name=phoneNumber,proto3" json:"phoneNumber,omitempty"`
	VerifyCode  string `protobuf:"bytes,3,opt,name=verifyCode,proto3" json:"verifyCode,omitempty"`
	Password    string `protobuf:"bytes,4,opt,name=password,proto3" json:"password,omitempty"`
	Email       string `protobuf:"bytes,5,opt,name=email,proto3" json:"email,omitempty"`
	// contains filtered or unexported fields
}

func (*ResetPasswordReq) Check

func (x *ResetPasswordReq) Check() error

func (*ResetPasswordReq) Descriptor deprecated

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

Deprecated: Use ResetPasswordReq.ProtoReflect.Descriptor instead.

func (*ResetPasswordReq) GetAreaCode

func (x *ResetPasswordReq) GetAreaCode() string

func (*ResetPasswordReq) GetEmail

func (x *ResetPasswordReq) GetEmail() string

func (*ResetPasswordReq) GetPassword

func (x *ResetPasswordReq) GetPassword() string

func (*ResetPasswordReq) GetPhoneNumber

func (x *ResetPasswordReq) GetPhoneNumber() string

func (*ResetPasswordReq) GetVerifyCode

func (x *ResetPasswordReq) GetVerifyCode() string

func (*ResetPasswordReq) ProtoMessage

func (*ResetPasswordReq) ProtoMessage()

func (*ResetPasswordReq) ProtoReflect

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

func (*ResetPasswordReq) Reset

func (x *ResetPasswordReq) Reset()

func (*ResetPasswordReq) String

func (x *ResetPasswordReq) String() string

type ResetPasswordResp

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

func (*ResetPasswordResp) Descriptor deprecated

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

Deprecated: Use ResetPasswordResp.ProtoReflect.Descriptor instead.

func (*ResetPasswordResp) ProtoMessage

func (*ResetPasswordResp) ProtoMessage()

func (*ResetPasswordResp) ProtoReflect

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

func (*ResetPasswordResp) Reset

func (x *ResetPasswordResp) Reset()

func (*ResetPasswordResp) String

func (x *ResetPasswordResp) String() string

type SearchUserFullInfoReq

type SearchUserFullInfoReq struct {
	Keyword    string                   `protobuf:"bytes,1,opt,name=keyword,proto3" json:"keyword,omitempty"`
	Pagination *sdkws.RequestPagination `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
	Genders    int32                    `protobuf:"varint,3,opt,name=genders,proto3" json:"genders,omitempty"`
	Normal     int32                    `protobuf:"varint,4,opt,name=normal,proto3" json:"normal,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchUserFullInfoReq) Check

func (x *SearchUserFullInfoReq) Check() error

func (*SearchUserFullInfoReq) Descriptor deprecated

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

Deprecated: Use SearchUserFullInfoReq.ProtoReflect.Descriptor instead.

func (*SearchUserFullInfoReq) GetGenders

func (x *SearchUserFullInfoReq) GetGenders() int32

func (*SearchUserFullInfoReq) GetKeyword

func (x *SearchUserFullInfoReq) GetKeyword() string

func (*SearchUserFullInfoReq) GetNormal

func (x *SearchUserFullInfoReq) GetNormal() int32

func (*SearchUserFullInfoReq) GetPagination

func (x *SearchUserFullInfoReq) GetPagination() *sdkws.RequestPagination

func (*SearchUserFullInfoReq) ProtoMessage

func (*SearchUserFullInfoReq) ProtoMessage()

func (*SearchUserFullInfoReq) ProtoReflect

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

func (*SearchUserFullInfoReq) Reset

func (x *SearchUserFullInfoReq) Reset()

func (*SearchUserFullInfoReq) String

func (x *SearchUserFullInfoReq) String() string

type SearchUserFullInfoResp

type SearchUserFullInfoResp struct {
	Total uint32                 `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"`
	Users []*common.UserFullInfo `protobuf:"bytes,2,rep,name=users,proto3" json:"users,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchUserFullInfoResp) Descriptor deprecated

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

Deprecated: Use SearchUserFullInfoResp.ProtoReflect.Descriptor instead.

func (*SearchUserFullInfoResp) GetTotal

func (x *SearchUserFullInfoResp) GetTotal() uint32

func (*SearchUserFullInfoResp) GetUsers

func (x *SearchUserFullInfoResp) GetUsers() []*common.UserFullInfo

func (*SearchUserFullInfoResp) ProtoMessage

func (*SearchUserFullInfoResp) ProtoMessage()

func (*SearchUserFullInfoResp) ProtoReflect

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

func (*SearchUserFullInfoResp) Reset

func (x *SearchUserFullInfoResp) Reset()

func (*SearchUserFullInfoResp) String

func (x *SearchUserFullInfoResp) String() string

type SearchUserInfoReq

type SearchUserInfoReq struct {
	Keyword    string                   `protobuf:"bytes,1,opt,name=keyword,proto3" json:"keyword,omitempty"`
	Pagination *sdkws.RequestPagination `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
	Genders    []int32                  `protobuf:"varint,3,rep,packed,name=genders,proto3" json:"genders,omitempty"`
	UserIDs    []string                 `protobuf:"bytes,4,rep,name=userIDs,proto3" json:"userIDs,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchUserInfoReq) Check

func (x *SearchUserInfoReq) Check() error

func (*SearchUserInfoReq) Descriptor deprecated

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

Deprecated: Use SearchUserInfoReq.ProtoReflect.Descriptor instead.

func (*SearchUserInfoReq) GetGenders

func (x *SearchUserInfoReq) GetGenders() []int32

func (*SearchUserInfoReq) GetKeyword

func (x *SearchUserInfoReq) GetKeyword() string

func (*SearchUserInfoReq) GetPagination

func (x *SearchUserInfoReq) GetPagination() *sdkws.RequestPagination

func (*SearchUserInfoReq) GetUserIDs

func (x *SearchUserInfoReq) GetUserIDs() []string

func (*SearchUserInfoReq) ProtoMessage

func (*SearchUserInfoReq) ProtoMessage()

func (*SearchUserInfoReq) ProtoReflect

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

func (*SearchUserInfoReq) Reset

func (x *SearchUserInfoReq) Reset()

func (*SearchUserInfoReq) String

func (x *SearchUserInfoReq) String() string

type SearchUserInfoResp

type SearchUserInfoResp struct {
	Total uint32                 `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"`
	Users []*common.UserFullInfo `protobuf:"bytes,2,rep,name=users,proto3" json:"users,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchUserInfoResp) Descriptor deprecated

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

Deprecated: Use SearchUserInfoResp.ProtoReflect.Descriptor instead.

func (*SearchUserInfoResp) GetTotal

func (x *SearchUserInfoResp) GetTotal() uint32

func (*SearchUserInfoResp) GetUsers

func (x *SearchUserInfoResp) GetUsers() []*common.UserFullInfo

func (*SearchUserInfoResp) ProtoMessage

func (*SearchUserInfoResp) ProtoMessage()

func (*SearchUserInfoResp) ProtoReflect

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

func (*SearchUserInfoResp) Reset

func (x *SearchUserInfoResp) Reset()

func (*SearchUserInfoResp) String

func (x *SearchUserInfoResp) String() string

type SearchUserPublicInfoReq

type SearchUserPublicInfoReq struct {
	Keyword    string                   `protobuf:"bytes,1,opt,name=keyword,proto3" json:"keyword,omitempty"`
	Pagination *sdkws.RequestPagination `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
	Genders    int32                    `protobuf:"varint,3,opt,name=genders,proto3" json:"genders,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchUserPublicInfoReq) Check

func (x *SearchUserPublicInfoReq) Check() error

func (*SearchUserPublicInfoReq) Descriptor deprecated

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

Deprecated: Use SearchUserPublicInfoReq.ProtoReflect.Descriptor instead.

func (*SearchUserPublicInfoReq) GetGenders

func (x *SearchUserPublicInfoReq) GetGenders() int32

func (*SearchUserPublicInfoReq) GetKeyword

func (x *SearchUserPublicInfoReq) GetKeyword() string

func (*SearchUserPublicInfoReq) GetPagination

func (x *SearchUserPublicInfoReq) GetPagination() *sdkws.RequestPagination

func (*SearchUserPublicInfoReq) ProtoMessage

func (*SearchUserPublicInfoReq) ProtoMessage()

func (*SearchUserPublicInfoReq) ProtoReflect

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

func (*SearchUserPublicInfoReq) Reset

func (x *SearchUserPublicInfoReq) Reset()

func (*SearchUserPublicInfoReq) String

func (x *SearchUserPublicInfoReq) String() string

type SearchUserPublicInfoResp

type SearchUserPublicInfoResp struct {
	Total uint32                   `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"`
	Users []*common.UserPublicInfo `protobuf:"bytes,2,rep,name=users,proto3" json:"users,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchUserPublicInfoResp) Descriptor deprecated

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

Deprecated: Use SearchUserPublicInfoResp.ProtoReflect.Descriptor instead.

func (*SearchUserPublicInfoResp) GetTotal

func (x *SearchUserPublicInfoResp) GetTotal() uint32

func (*SearchUserPublicInfoResp) GetUsers

func (*SearchUserPublicInfoResp) ProtoMessage

func (*SearchUserPublicInfoResp) ProtoMessage()

func (*SearchUserPublicInfoResp) ProtoReflect

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

func (*SearchUserPublicInfoResp) Reset

func (x *SearchUserPublicInfoResp) Reset()

func (*SearchUserPublicInfoResp) String

func (x *SearchUserPublicInfoResp) String() string

type SendVerifyCodeReq

type SendVerifyCodeReq struct {
	UsedFor        int32  `protobuf:"varint,1,opt,name=usedFor,proto3" json:"usedFor,omitempty"`
	Ip             string `protobuf:"bytes,2,opt,name=ip,proto3" json:"ip,omitempty"`
	InvitationCode string `protobuf:"bytes,3,opt,name=invitationCode,proto3" json:"invitationCode,omitempty"`
	DeviceID       string `protobuf:"bytes,4,opt,name=deviceID,proto3" json:"deviceID,omitempty"`
	Platform       int32  `protobuf:"varint,5,opt,name=platform,proto3" json:"platform,omitempty"`
	AreaCode       string `protobuf:"bytes,6,opt,name=areaCode,proto3" json:"areaCode,omitempty"`
	PhoneNumber    string `protobuf:"bytes,7,opt,name=phoneNumber,proto3" json:"phoneNumber,omitempty"`
	Email          string `protobuf:"bytes,8,opt,name=email,proto3" json:"email,omitempty"`
	// contains filtered or unexported fields
}

func (*SendVerifyCodeReq) Check

func (x *SendVerifyCodeReq) Check() error

func (*SendVerifyCodeReq) Descriptor deprecated

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

Deprecated: Use SendVerifyCodeReq.ProtoReflect.Descriptor instead.

func (*SendVerifyCodeReq) GetAreaCode

func (x *SendVerifyCodeReq) GetAreaCode() string

func (*SendVerifyCodeReq) GetDeviceID

func (x *SendVerifyCodeReq) GetDeviceID() string

func (*SendVerifyCodeReq) GetEmail

func (x *SendVerifyCodeReq) GetEmail() string

func (*SendVerifyCodeReq) GetInvitationCode

func (x *SendVerifyCodeReq) GetInvitationCode() string

func (*SendVerifyCodeReq) GetIp

func (x *SendVerifyCodeReq) GetIp() string

func (*SendVerifyCodeReq) GetPhoneNumber

func (x *SendVerifyCodeReq) GetPhoneNumber() string

func (*SendVerifyCodeReq) GetPlatform

func (x *SendVerifyCodeReq) GetPlatform() int32

func (*SendVerifyCodeReq) GetUsedFor

func (x *SendVerifyCodeReq) GetUsedFor() int32

func (*SendVerifyCodeReq) ProtoMessage

func (*SendVerifyCodeReq) ProtoMessage()

func (*SendVerifyCodeReq) ProtoReflect

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

func (*SendVerifyCodeReq) Reset

func (x *SendVerifyCodeReq) Reset()

func (*SendVerifyCodeReq) String

func (x *SendVerifyCodeReq) String() string

type SendVerifyCodeResp

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

func (*SendVerifyCodeResp) Descriptor deprecated

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

Deprecated: Use SendVerifyCodeResp.ProtoReflect.Descriptor instead.

func (*SendVerifyCodeResp) ProtoMessage

func (*SendVerifyCodeResp) ProtoMessage()

func (*SendVerifyCodeResp) ProtoReflect

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

func (*SendVerifyCodeResp) Reset

func (x *SendVerifyCodeResp) Reset()

func (*SendVerifyCodeResp) String

func (x *SendVerifyCodeResp) String() string

type SetAllowRegisterReq

type SetAllowRegisterReq struct {
	AllowRegister bool `protobuf:"varint,1,opt,name=allowRegister,proto3" json:"allowRegister,omitempty"`
	// contains filtered or unexported fields
}

func (*SetAllowRegisterReq) Descriptor deprecated

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

Deprecated: Use SetAllowRegisterReq.ProtoReflect.Descriptor instead.

func (*SetAllowRegisterReq) GetAllowRegister

func (x *SetAllowRegisterReq) GetAllowRegister() bool

func (*SetAllowRegisterReq) ProtoMessage

func (*SetAllowRegisterReq) ProtoMessage()

func (*SetAllowRegisterReq) ProtoReflect

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

func (*SetAllowRegisterReq) Reset

func (x *SetAllowRegisterReq) Reset()

func (*SetAllowRegisterReq) String

func (x *SetAllowRegisterReq) String() string

type SetAllowRegisterResp

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

func (*SetAllowRegisterResp) Descriptor deprecated

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

Deprecated: Use SetAllowRegisterResp.ProtoReflect.Descriptor instead.

func (*SetAllowRegisterResp) ProtoMessage

func (*SetAllowRegisterResp) ProtoMessage()

func (*SetAllowRegisterResp) ProtoReflect

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

func (*SetAllowRegisterResp) Reset

func (x *SetAllowRegisterResp) Reset()

func (*SetAllowRegisterResp) String

func (x *SetAllowRegisterResp) String() string

type SignalRecord

type SignalRecord struct {
	FileName        string                   `protobuf:"bytes,1,opt,name=fileName,proto3" json:"fileName,omitempty"`
	MediaType       string                   `protobuf:"bytes,2,opt,name=mediaType,proto3" json:"mediaType,omitempty"`
	RoomType        string                   `protobuf:"bytes,3,opt,name=roomType,proto3" json:"roomType,omitempty"`
	SenderID        string                   `protobuf:"bytes,4,opt,name=senderID,proto3" json:"senderID,omitempty"`
	SenderNickname  string                   `protobuf:"bytes,5,opt,name=senderNickname,proto3" json:"senderNickname,omitempty"`
	RecvID          string                   `protobuf:"bytes,6,opt,name=recvID,proto3" json:"recvID,omitempty"`
	RecvNickname    string                   `protobuf:"bytes,7,opt,name=recvNickname,proto3" json:"recvNickname,omitempty"`
	GroupID         string                   `protobuf:"bytes,8,opt,name=groupID,proto3" json:"groupID,omitempty"`
	GroupName       string                   `protobuf:"bytes,9,opt,name=groupName,proto3" json:"groupName,omitempty"`
	InviterUserList []*common.UserPublicInfo `protobuf:"bytes,10,rep,name=inviterUserList,proto3" json:"inviterUserList,omitempty"`
	Duration        int32                    `protobuf:"varint,11,opt,name=duration,proto3" json:"duration,omitempty"`
	CreateTime      int64                    `protobuf:"varint,12,opt,name=createTime,proto3" json:"createTime,omitempty"`
	Size            string                   `protobuf:"bytes,13,opt,name=size,proto3" json:"size,omitempty"`
	DownloadURL     string                   `protobuf:"bytes,14,opt,name=downloadURL,proto3" json:"downloadURL,omitempty"`
	// contains filtered or unexported fields
}

func (*SignalRecord) Descriptor deprecated

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

Deprecated: Use SignalRecord.ProtoReflect.Descriptor instead.

func (*SignalRecord) GetCreateTime

func (x *SignalRecord) GetCreateTime() int64

func (*SignalRecord) GetDownloadURL

func (x *SignalRecord) GetDownloadURL() string

func (*SignalRecord) GetDuration

func (x *SignalRecord) GetDuration() int32

func (*SignalRecord) GetFileName

func (x *SignalRecord) GetFileName() string

func (*SignalRecord) GetGroupID

func (x *SignalRecord) GetGroupID() string

func (*SignalRecord) GetGroupName

func (x *SignalRecord) GetGroupName() string

func (*SignalRecord) GetInviterUserList

func (x *SignalRecord) GetInviterUserList() []*common.UserPublicInfo

func (*SignalRecord) GetMediaType

func (x *SignalRecord) GetMediaType() string

func (*SignalRecord) GetRecvID

func (x *SignalRecord) GetRecvID() string

func (*SignalRecord) GetRecvNickname

func (x *SignalRecord) GetRecvNickname() string

func (*SignalRecord) GetRoomType

func (x *SignalRecord) GetRoomType() string

func (*SignalRecord) GetSenderID

func (x *SignalRecord) GetSenderID() string

func (*SignalRecord) GetSenderNickname

func (x *SignalRecord) GetSenderNickname() string

func (*SignalRecord) GetSize

func (x *SignalRecord) GetSize() string

func (*SignalRecord) ProtoMessage

func (*SignalRecord) ProtoMessage()

func (*SignalRecord) ProtoReflect

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

func (*SignalRecord) Reset

func (x *SignalRecord) Reset()

func (*SignalRecord) String

func (x *SignalRecord) String() string

type UnimplementedChatServer

type UnimplementedChatServer struct {
}

UnimplementedChatServer can be embedded to have forward compatible implementations.

func (*UnimplementedChatServer) AddUserAccount

func (*UnimplementedChatServer) BlockContact

func (*UnimplementedChatServer) CancelBlock

func (*UnimplementedChatServer) ChangePassword

func (*UnimplementedChatServer) CheckUserExist

func (*UnimplementedChatServer) CreateContact

func (*UnimplementedChatServer) DelContact

func (*UnimplementedChatServer) DelUserAccount

func (*UnimplementedChatServer) FindAccountUser

func (*UnimplementedChatServer) FindUserAccount

func (*UnimplementedChatServer) FindUserFullInfo

func (*UnimplementedChatServer) FindUserPublicInfo

func (*UnimplementedChatServer) GetAllowRegister

func (*UnimplementedChatServer) GetContactList

func (*UnimplementedChatServer) GetTokenForVideoMeeting

func (*UnimplementedChatServer) IsContact

func (*UnimplementedChatServer) Login

func (*UnimplementedChatServer) OpenIMCallback

func (*UnimplementedChatServer) RegisterUser

func (*UnimplementedChatServer) ResetPassword

func (*UnimplementedChatServer) SearchUserFullInfo

func (*UnimplementedChatServer) SearchUserInfo

func (*UnimplementedChatServer) SearchUserPublicInfo

func (*UnimplementedChatServer) SendVerifyCode

func (*UnimplementedChatServer) SetAllowRegister

func (*UnimplementedChatServer) UpdateContact

func (*UnimplementedChatServer) UpdateUserInfo

func (*UnimplementedChatServer) UserLoginCount

func (*UnimplementedChatServer) VerifyCode

type UpdateContactReq

type UpdateContactReq struct {
	UserId        string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
	ContactUserId string `protobuf:"bytes,2,opt,name=contactUserId,proto3" json:"contactUserId,omitempty"`
	Remark        string `protobuf:"bytes,3,opt,name=remark,proto3" json:"remark,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateContactReq) Descriptor deprecated

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

Deprecated: Use UpdateContactReq.ProtoReflect.Descriptor instead.

func (*UpdateContactReq) GetContactUserId

func (x *UpdateContactReq) GetContactUserId() string

func (*UpdateContactReq) GetRemark

func (x *UpdateContactReq) GetRemark() string

func (*UpdateContactReq) GetUserId

func (x *UpdateContactReq) GetUserId() string

func (*UpdateContactReq) ProtoMessage

func (*UpdateContactReq) ProtoMessage()

func (*UpdateContactReq) ProtoReflect

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

func (*UpdateContactReq) Reset

func (x *UpdateContactReq) Reset()

func (*UpdateContactReq) String

func (x *UpdateContactReq) String() string

type UpdateContactResp

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

func (*UpdateContactResp) Descriptor deprecated

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

Deprecated: Use UpdateContactResp.ProtoReflect.Descriptor instead.

func (*UpdateContactResp) ProtoMessage

func (*UpdateContactResp) ProtoMessage()

func (*UpdateContactResp) ProtoReflect

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

func (*UpdateContactResp) Reset

func (x *UpdateContactResp) Reset()

func (*UpdateContactResp) String

func (x *UpdateContactResp) String() string

type UpdateUserInfoReq

type UpdateUserInfoReq struct {
	UserID           string                  `protobuf:"bytes,1,opt,name=userID,proto3" json:"userID,omitempty"`
	Account          *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=account,proto3" json:"account,omitempty"`
	PhoneNumber      *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=phoneNumber,proto3" json:"phoneNumber,omitempty"`
	AreaCode         *wrapperspb.StringValue `protobuf:"bytes,4,opt,name=areaCode,proto3" json:"areaCode,omitempty"`
	Email            *wrapperspb.StringValue `protobuf:"bytes,5,opt,name=email,proto3" json:"email,omitempty"`
	Nickname         *wrapperspb.StringValue `protobuf:"bytes,6,opt,name=nickname,proto3" json:"nickname,omitempty"`
	FaceURL          *wrapperspb.StringValue `protobuf:"bytes,7,opt,name=faceURL,proto3" json:"faceURL,omitempty"`
	Gender           *wrapperspb.Int32Value  `protobuf:"bytes,8,opt,name=gender,proto3" json:"gender,omitempty"`
	Level            *wrapperspb.Int32Value  `protobuf:"bytes,9,opt,name=level,proto3" json:"level,omitempty"`
	Birth            *wrapperspb.Int64Value  `protobuf:"bytes,10,opt,name=birth,proto3" json:"birth,omitempty"`
	AllowAddFriend   *wrapperspb.Int32Value  `protobuf:"bytes,11,opt,name=allowAddFriend,proto3" json:"allowAddFriend,omitempty"`
	AllowBeep        *wrapperspb.Int32Value  `protobuf:"bytes,12,opt,name=allowBeep,proto3" json:"allowBeep,omitempty"`
	AllowVibration   *wrapperspb.Int32Value  `protobuf:"bytes,13,opt,name=allowVibration,proto3" json:"allowVibration,omitempty"`
	GlobalRecvMsgOpt *wrapperspb.Int32Value  `protobuf:"bytes,14,opt,name=globalRecvMsgOpt,proto3" json:"globalRecvMsgOpt,omitempty"`
	RegisterType     *wrapperspb.Int32Value  `protobuf:"bytes,15,opt,name=RegisterType,proto3" json:"RegisterType,omitempty"`
	Name             *wrapperspb.StringValue `protobuf:"bytes,16,opt,name=name,proto3" json:"name,omitempty"`
	Surname          *wrapperspb.StringValue `protobuf:"bytes,17,opt,name=surname,proto3" json:"surname,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateUserInfoReq) Check

func (x *UpdateUserInfoReq) Check() error

func (*UpdateUserInfoReq) Descriptor deprecated

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

Deprecated: Use UpdateUserInfoReq.ProtoReflect.Descriptor instead.

func (*UpdateUserInfoReq) GetAccount

func (x *UpdateUserInfoReq) GetAccount() *wrapperspb.StringValue

func (*UpdateUserInfoReq) GetAllowAddFriend

func (x *UpdateUserInfoReq) GetAllowAddFriend() *wrapperspb.Int32Value

func (*UpdateUserInfoReq) GetAllowBeep

func (x *UpdateUserInfoReq) GetAllowBeep() *wrapperspb.Int32Value

func (*UpdateUserInfoReq) GetAllowVibration

func (x *UpdateUserInfoReq) GetAllowVibration() *wrapperspb.Int32Value

func (*UpdateUserInfoReq) GetAreaCode

func (x *UpdateUserInfoReq) GetAreaCode() *wrapperspb.StringValue

func (*UpdateUserInfoReq) GetBirth

func (x *UpdateUserInfoReq) GetBirth() *wrapperspb.Int64Value

func (*UpdateUserInfoReq) GetEmail

func (x *UpdateUserInfoReq) GetEmail() *wrapperspb.StringValue

func (*UpdateUserInfoReq) GetFaceURL

func (x *UpdateUserInfoReq) GetFaceURL() *wrapperspb.StringValue

func (*UpdateUserInfoReq) GetGender

func (x *UpdateUserInfoReq) GetGender() *wrapperspb.Int32Value

func (*UpdateUserInfoReq) GetGlobalRecvMsgOpt

func (x *UpdateUserInfoReq) GetGlobalRecvMsgOpt() *wrapperspb.Int32Value

func (*UpdateUserInfoReq) GetLevel

func (x *UpdateUserInfoReq) GetLevel() *wrapperspb.Int32Value

func (*UpdateUserInfoReq) GetName

func (*UpdateUserInfoReq) GetNickname

func (x *UpdateUserInfoReq) GetNickname() *wrapperspb.StringValue

func (*UpdateUserInfoReq) GetPhoneNumber

func (x *UpdateUserInfoReq) GetPhoneNumber() *wrapperspb.StringValue

func (*UpdateUserInfoReq) GetRegisterType

func (x *UpdateUserInfoReq) GetRegisterType() *wrapperspb.Int32Value

func (*UpdateUserInfoReq) GetSurname

func (x *UpdateUserInfoReq) GetSurname() *wrapperspb.StringValue

func (*UpdateUserInfoReq) GetUserID

func (x *UpdateUserInfoReq) GetUserID() string

func (*UpdateUserInfoReq) ProtoMessage

func (*UpdateUserInfoReq) ProtoMessage()

func (*UpdateUserInfoReq) ProtoReflect

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

func (*UpdateUserInfoReq) Reset

func (x *UpdateUserInfoReq) Reset()

func (*UpdateUserInfoReq) String

func (x *UpdateUserInfoReq) String() string

type UpdateUserInfoResp

type UpdateUserInfoResp struct {
	FaceUrl  string `protobuf:"bytes,1,opt,name=faceUrl,proto3" json:"faceUrl,omitempty"`
	NickName string `protobuf:"bytes,2,opt,name=nickName,proto3" json:"nickName,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateUserInfoResp) Descriptor deprecated

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

Deprecated: Use UpdateUserInfoResp.ProtoReflect.Descriptor instead.

func (*UpdateUserInfoResp) GetFaceUrl

func (x *UpdateUserInfoResp) GetFaceUrl() string

func (*UpdateUserInfoResp) GetNickName

func (x *UpdateUserInfoResp) GetNickName() string

func (*UpdateUserInfoResp) ProtoMessage

func (*UpdateUserInfoResp) ProtoMessage()

func (*UpdateUserInfoResp) ProtoReflect

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

func (*UpdateUserInfoResp) Reset

func (x *UpdateUserInfoResp) Reset()

func (*UpdateUserInfoResp) String

func (x *UpdateUserInfoResp) String() string

type UserIdentity

type UserIdentity struct {
	Email       string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
	AreaCode    string `protobuf:"bytes,2,opt,name=areaCode,proto3" json:"areaCode,omitempty"`
	PhoneNumber string `protobuf:"bytes,3,opt,name=phoneNumber,proto3" json:"phoneNumber,omitempty"`
	DeviceID    string `protobuf:"bytes,4,opt,name=deviceID,proto3" json:"deviceID,omitempty"`
	Platform    int32  `protobuf:"varint,5,opt,name=platform,proto3" json:"platform,omitempty"`
	Account     string `protobuf:"bytes,6,opt,name=account,proto3" json:"account,omitempty"`
	// contains filtered or unexported fields
}

func (*UserIdentity) Descriptor deprecated

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

Deprecated: Use UserIdentity.ProtoReflect.Descriptor instead.

func (*UserIdentity) GetAccount

func (x *UserIdentity) GetAccount() string

func (*UserIdentity) GetAreaCode

func (x *UserIdentity) GetAreaCode() string

func (*UserIdentity) GetDeviceID

func (x *UserIdentity) GetDeviceID() string

func (*UserIdentity) GetEmail

func (x *UserIdentity) GetEmail() string

func (*UserIdentity) GetPhoneNumber

func (x *UserIdentity) GetPhoneNumber() string

func (*UserIdentity) GetPlatform

func (x *UserIdentity) GetPlatform() int32

func (*UserIdentity) ProtoMessage

func (*UserIdentity) ProtoMessage()

func (*UserIdentity) ProtoReflect

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

func (*UserIdentity) Reset

func (x *UserIdentity) Reset()

func (*UserIdentity) String

func (x *UserIdentity) String() string

type UserLoginCountReq

type UserLoginCountReq struct {
	Start int64 `protobuf:"varint,1,opt,name=start,proto3" json:"start,omitempty"`
	End   int64 `protobuf:"varint,2,opt,name=end,proto3" json:"end,omitempty"`
	// contains filtered or unexported fields
}

func (*UserLoginCountReq) Descriptor deprecated

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

Deprecated: Use UserLoginCountReq.ProtoReflect.Descriptor instead.

func (*UserLoginCountReq) GetEnd

func (x *UserLoginCountReq) GetEnd() int64

func (*UserLoginCountReq) GetStart

func (x *UserLoginCountReq) GetStart() int64

func (*UserLoginCountReq) ProtoMessage

func (*UserLoginCountReq) ProtoMessage()

func (*UserLoginCountReq) ProtoReflect

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

func (*UserLoginCountReq) Reset

func (x *UserLoginCountReq) Reset()

func (*UserLoginCountReq) String

func (x *UserLoginCountReq) String() string

type UserLoginCountResp

type UserLoginCountResp struct {
	LoginCount   int64            `protobuf:"varint,1,opt,name=loginCount,proto3" json:"loginCount,omitempty"`
	UnloginCount int64            `protobuf:"varint,2,opt,name=unloginCount,proto3" json:"unloginCount,omitempty"`
	Count        map[string]int64 `` /* 152-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*UserLoginCountResp) Descriptor deprecated

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

Deprecated: Use UserLoginCountResp.ProtoReflect.Descriptor instead.

func (*UserLoginCountResp) GetCount

func (x *UserLoginCountResp) GetCount() map[string]int64

func (*UserLoginCountResp) GetLoginCount

func (x *UserLoginCountResp) GetLoginCount() int64

func (*UserLoginCountResp) GetUnloginCount

func (x *UserLoginCountResp) GetUnloginCount() int64

func (*UserLoginCountResp) ProtoMessage

func (*UserLoginCountResp) ProtoMessage()

func (*UserLoginCountResp) ProtoReflect

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

func (*UserLoginCountResp) Reset

func (x *UserLoginCountResp) Reset()

func (*UserLoginCountResp) String

func (x *UserLoginCountResp) String() string

type VerifyCodeReq

type VerifyCodeReq struct {
	AreaCode    string `protobuf:"bytes,1,opt,name=areaCode,proto3" json:"areaCode,omitempty"`
	PhoneNumber string `protobuf:"bytes,2,opt,name=phoneNumber,proto3" json:"phoneNumber,omitempty"`
	VerifyCode  string `protobuf:"bytes,3,opt,name=verifyCode,proto3" json:"verifyCode,omitempty"`
	Email       string `protobuf:"bytes,4,opt,name=email,proto3" json:"email,omitempty"`
	// contains filtered or unexported fields
}

func (*VerifyCodeReq) Check

func (x *VerifyCodeReq) Check() error

func (*VerifyCodeReq) Descriptor deprecated

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

Deprecated: Use VerifyCodeReq.ProtoReflect.Descriptor instead.

func (*VerifyCodeReq) GetAreaCode

func (x *VerifyCodeReq) GetAreaCode() string

func (*VerifyCodeReq) GetEmail

func (x *VerifyCodeReq) GetEmail() string

func (*VerifyCodeReq) GetPhoneNumber

func (x *VerifyCodeReq) GetPhoneNumber() string

func (*VerifyCodeReq) GetVerifyCode

func (x *VerifyCodeReq) GetVerifyCode() string

func (*VerifyCodeReq) ProtoMessage

func (*VerifyCodeReq) ProtoMessage()

func (*VerifyCodeReq) ProtoReflect

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

func (*VerifyCodeReq) Reset

func (x *VerifyCodeReq) Reset()

func (*VerifyCodeReq) String

func (x *VerifyCodeReq) String() string

type VerifyCodeResp

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

func (*VerifyCodeResp) Descriptor deprecated

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

Deprecated: Use VerifyCodeResp.ProtoReflect.Descriptor instead.

func (*VerifyCodeResp) ProtoMessage

func (*VerifyCodeResp) ProtoMessage()

func (*VerifyCodeResp) ProtoReflect

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

func (*VerifyCodeResp) Reset

func (x *VerifyCodeResp) Reset()

func (*VerifyCodeResp) String

func (x *VerifyCodeResp) String() string

Jump to

Keyboard shortcuts

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