relation

package
v0.0.0-...-542fe02 Latest Latest
Warning

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

Go to latest
Published: Sep 4, 2023 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var RelationActionResponse_StatusMsg_DEFAULT string
View Source
var RelationFollowListResponse_StatusMsg_DEFAULT string
View Source
var RelationFollowerListResponse_StatusMsg_DEFAULT string
View Source
var RelationFriendListResponse_StatusMsg_DEFAULT string
View Source
var User_Avatar_DEFAULT string
View Source
var User_BackgroundImage_DEFAULT string
View Source
var User_FavoriteCount_DEFAULT int64
View Source
var User_FollowCount_DEFAULT int64
View Source
var User_FollowerCount_DEFAULT int64
View Source
var User_Signature_DEFAULT string
View Source
var User_TotalFavorited_DEFAULT int64
View Source
var User_WorkCount_DEFAULT int64

Functions

This section is empty.

Types

type FriendUser

type FriendUser struct {
	Base *User `thrift:"base,1" form:"base" json:"base" query:"base"`
	// 和该好友的最新聊天消息
	Message string `thrift:"message,2" form:"message" json:"message" query:"message"`
	// message消息的类型,0 => 当前请求用户接收的消息, 1 => 当前请求用户发送的消息
	MsgType int64 `thrift:"msgType,3" form:"msgType" json:"msgType" query:"msgType"`
}

func NewFriendUser

func NewFriendUser() *FriendUser

func (*FriendUser) GetBase

func (p *FriendUser) GetBase() (v *User)

func (*FriendUser) GetMessage

func (p *FriendUser) GetMessage() (v string)

func (*FriendUser) GetMsgType

func (p *FriendUser) GetMsgType() (v int64)

func (*FriendUser) IsSetBase

func (p *FriendUser) IsSetBase() bool

func (*FriendUser) Read

func (p *FriendUser) Read(iprot thrift.TProtocol) (err error)

func (*FriendUser) ReadField1

func (p *FriendUser) ReadField1(iprot thrift.TProtocol) error

func (*FriendUser) ReadField2

func (p *FriendUser) ReadField2(iprot thrift.TProtocol) error

func (*FriendUser) ReadField3

func (p *FriendUser) ReadField3(iprot thrift.TProtocol) error

func (*FriendUser) String

func (p *FriendUser) String() string

func (*FriendUser) Write

func (p *FriendUser) Write(oprot thrift.TProtocol) (err error)

type RelationActionRequest

type RelationActionRequest struct {
	// 用户鉴权token
	Token string `thrift:"token,1" form:"token" json:"token" query:"token"`
	// 对方用户id
	ToUserID int64 `thrift:"to_user_id,2" form:"to_user_id" json:"to_user_id" query:"to_user_id"`
	// 1-关注,2-取消关注
	ActionType int32 `thrift:"action_type,3" form:"action_type" json:"action_type" query:"action_type"`
}
var RelationServiceRelationActionArgs_Req_DEFAULT *RelationActionRequest

func NewRelationActionRequest

func NewRelationActionRequest() *RelationActionRequest

func (*RelationActionRequest) GetActionType

func (p *RelationActionRequest) GetActionType() (v int32)

func (*RelationActionRequest) GetToUserID

func (p *RelationActionRequest) GetToUserID() (v int64)

func (*RelationActionRequest) GetToken

func (p *RelationActionRequest) GetToken() (v string)

func (*RelationActionRequest) Read

func (p *RelationActionRequest) Read(iprot thrift.TProtocol) (err error)

func (*RelationActionRequest) ReadField1

func (p *RelationActionRequest) ReadField1(iprot thrift.TProtocol) error

func (*RelationActionRequest) ReadField2

func (p *RelationActionRequest) ReadField2(iprot thrift.TProtocol) error

func (*RelationActionRequest) ReadField3

func (p *RelationActionRequest) ReadField3(iprot thrift.TProtocol) error

func (*RelationActionRequest) String

func (p *RelationActionRequest) String() string

func (*RelationActionRequest) Write

func (p *RelationActionRequest) Write(oprot thrift.TProtocol) (err error)

type RelationActionResponse

type RelationActionResponse struct {
	// 状态码,0-成功,其他值-失败
	StatusCode int32 `thrift:"status_code,1" form:"status_code" json:"status_code" query:"status_code"`
	// 返回状态描述
	StatusMsg *string `thrift:"status_msg,2,optional" form:"status_msg" json:"status_msg,omitempty" query:"status_msg"`
}
var RelationServiceRelationActionResult_Success_DEFAULT *RelationActionResponse

func NewRelationActionResponse

func NewRelationActionResponse() *RelationActionResponse

func (*RelationActionResponse) GetStatusCode

func (p *RelationActionResponse) GetStatusCode() (v int32)

func (*RelationActionResponse) GetStatusMsg

func (p *RelationActionResponse) GetStatusMsg() (v string)

func (*RelationActionResponse) IsSetStatusMsg

func (p *RelationActionResponse) IsSetStatusMsg() bool

func (*RelationActionResponse) Read

func (p *RelationActionResponse) Read(iprot thrift.TProtocol) (err error)

func (*RelationActionResponse) ReadField1

func (p *RelationActionResponse) ReadField1(iprot thrift.TProtocol) error

func (*RelationActionResponse) ReadField2

func (p *RelationActionResponse) ReadField2(iprot thrift.TProtocol) error

func (*RelationActionResponse) String

func (p *RelationActionResponse) String() string

func (*RelationActionResponse) Write

func (p *RelationActionResponse) Write(oprot thrift.TProtocol) (err error)

type RelationFollowListRequest

type RelationFollowListRequest struct {
	// 用户id
	UserID int64 `thrift:"user_id,1" form:"user_id" json:"user_id" query:"user_id"`
	// 用户鉴权token
	Token string `thrift:"token,2" form:"token" json:"token" query:"token"`
}
var RelationServiceRelationFollowListArgs_Req_DEFAULT *RelationFollowListRequest

func NewRelationFollowListRequest

func NewRelationFollowListRequest() *RelationFollowListRequest

func (*RelationFollowListRequest) GetToken

func (p *RelationFollowListRequest) GetToken() (v string)

func (*RelationFollowListRequest) GetUserID

func (p *RelationFollowListRequest) GetUserID() (v int64)

func (*RelationFollowListRequest) Read

func (p *RelationFollowListRequest) Read(iprot thrift.TProtocol) (err error)

func (*RelationFollowListRequest) ReadField1

func (p *RelationFollowListRequest) ReadField1(iprot thrift.TProtocol) error

func (*RelationFollowListRequest) ReadField2

func (p *RelationFollowListRequest) ReadField2(iprot thrift.TProtocol) error

func (*RelationFollowListRequest) String

func (p *RelationFollowListRequest) String() string

func (*RelationFollowListRequest) Write

func (p *RelationFollowListRequest) Write(oprot thrift.TProtocol) (err error)

type RelationFollowListResponse

type RelationFollowListResponse struct {
	// 状态码,0-成功,其他值-失败
	StatusCode int32 `thrift:"status_code,1" form:"status_code" json:"status_code" query:"status_code"`
	// 返回状态描述
	StatusMsg *string `thrift:"status_msg,2,optional" form:"status_msg" json:"status_msg,omitempty" query:"status_msg"`
	// 用户信息列表
	UserList []*User `thrift:"user_list,3" form:"user_list" json:"user_list" query:"user_list"`
}
var RelationServiceRelationFollowListResult_Success_DEFAULT *RelationFollowListResponse

func NewRelationFollowListResponse

func NewRelationFollowListResponse() *RelationFollowListResponse

func (*RelationFollowListResponse) GetStatusCode

func (p *RelationFollowListResponse) GetStatusCode() (v int32)

func (*RelationFollowListResponse) GetStatusMsg

func (p *RelationFollowListResponse) GetStatusMsg() (v string)

func (*RelationFollowListResponse) GetUserList

func (p *RelationFollowListResponse) GetUserList() (v []*User)

func (*RelationFollowListResponse) IsSetStatusMsg

func (p *RelationFollowListResponse) IsSetStatusMsg() bool

func (*RelationFollowListResponse) Read

func (p *RelationFollowListResponse) Read(iprot thrift.TProtocol) (err error)

func (*RelationFollowListResponse) ReadField1

func (p *RelationFollowListResponse) ReadField1(iprot thrift.TProtocol) error

func (*RelationFollowListResponse) ReadField2

func (p *RelationFollowListResponse) ReadField2(iprot thrift.TProtocol) error

func (*RelationFollowListResponse) ReadField3

func (p *RelationFollowListResponse) ReadField3(iprot thrift.TProtocol) error

func (*RelationFollowListResponse) String

func (p *RelationFollowListResponse) String() string

func (*RelationFollowListResponse) Write

func (p *RelationFollowListResponse) Write(oprot thrift.TProtocol) (err error)

type RelationFollowerListRequest

type RelationFollowerListRequest struct {
	// 用户id
	UserID int64 `thrift:"user_id,1" form:"user_id" json:"user_id" query:"user_id"`
	// 用户鉴权token
	Token string `thrift:"token,2" form:"token" json:"token" query:"token"`
}
var RelationServiceRelationFollowerListArgs_Req_DEFAULT *RelationFollowerListRequest

func NewRelationFollowerListRequest

func NewRelationFollowerListRequest() *RelationFollowerListRequest

func (*RelationFollowerListRequest) GetToken

func (p *RelationFollowerListRequest) GetToken() (v string)

func (*RelationFollowerListRequest) GetUserID

func (p *RelationFollowerListRequest) GetUserID() (v int64)

func (*RelationFollowerListRequest) Read

func (p *RelationFollowerListRequest) Read(iprot thrift.TProtocol) (err error)

func (*RelationFollowerListRequest) ReadField1

func (p *RelationFollowerListRequest) ReadField1(iprot thrift.TProtocol) error

func (*RelationFollowerListRequest) ReadField2

func (p *RelationFollowerListRequest) ReadField2(iprot thrift.TProtocol) error

func (*RelationFollowerListRequest) String

func (p *RelationFollowerListRequest) String() string

func (*RelationFollowerListRequest) Write

func (p *RelationFollowerListRequest) Write(oprot thrift.TProtocol) (err error)

type RelationFollowerListResponse

type RelationFollowerListResponse struct {
	// 状态码,0-成功,其他值-失败
	StatusCode int32 `thrift:"status_code,1" form:"status_code" json:"status_code" query:"status_code"`
	// 返回状态描述
	StatusMsg *string `thrift:"status_msg,2,optional" form:"status_msg" json:"status_msg,omitempty" query:"status_msg"`
	// 用户列表
	UserList []*User `thrift:"user_list,3" form:"user_list" json:"user_list" query:"user_list"`
}
var RelationServiceRelationFollowerListResult_Success_DEFAULT *RelationFollowerListResponse

func NewRelationFollowerListResponse

func NewRelationFollowerListResponse() *RelationFollowerListResponse

func (*RelationFollowerListResponse) GetStatusCode

func (p *RelationFollowerListResponse) GetStatusCode() (v int32)

func (*RelationFollowerListResponse) GetStatusMsg

func (p *RelationFollowerListResponse) GetStatusMsg() (v string)

func (*RelationFollowerListResponse) GetUserList

func (p *RelationFollowerListResponse) GetUserList() (v []*User)

func (*RelationFollowerListResponse) IsSetStatusMsg

func (p *RelationFollowerListResponse) IsSetStatusMsg() bool

func (*RelationFollowerListResponse) Read

func (p *RelationFollowerListResponse) Read(iprot thrift.TProtocol) (err error)

func (*RelationFollowerListResponse) ReadField1

func (p *RelationFollowerListResponse) ReadField1(iprot thrift.TProtocol) error

func (*RelationFollowerListResponse) ReadField2

func (p *RelationFollowerListResponse) ReadField2(iprot thrift.TProtocol) error

func (*RelationFollowerListResponse) ReadField3

func (p *RelationFollowerListResponse) ReadField3(iprot thrift.TProtocol) error

func (*RelationFollowerListResponse) String

func (*RelationFollowerListResponse) Write

func (p *RelationFollowerListResponse) Write(oprot thrift.TProtocol) (err error)

type RelationFriendListRequest

type RelationFriendListRequest struct {
	// 用户id
	UserID int64 `thrift:"user_id,1" form:"user_id" json:"user_id" query:"user_id"`
	// 用户鉴权token
	Token string `thrift:"token,2" form:"token" json:"token" query:"token"`
}
var RelationServiceRelationFriendListArgs_Req_DEFAULT *RelationFriendListRequest

func NewRelationFriendListRequest

func NewRelationFriendListRequest() *RelationFriendListRequest

func (*RelationFriendListRequest) GetToken

func (p *RelationFriendListRequest) GetToken() (v string)

func (*RelationFriendListRequest) GetUserID

func (p *RelationFriendListRequest) GetUserID() (v int64)

func (*RelationFriendListRequest) Read

func (p *RelationFriendListRequest) Read(iprot thrift.TProtocol) (err error)

func (*RelationFriendListRequest) ReadField1

func (p *RelationFriendListRequest) ReadField1(iprot thrift.TProtocol) error

func (*RelationFriendListRequest) ReadField2

func (p *RelationFriendListRequest) ReadField2(iprot thrift.TProtocol) error

func (*RelationFriendListRequest) String

func (p *RelationFriendListRequest) String() string

func (*RelationFriendListRequest) Write

func (p *RelationFriendListRequest) Write(oprot thrift.TProtocol) (err error)

type RelationFriendListResponse

type RelationFriendListResponse struct {
	// 状态码,0-成功,其他值-失败
	StatusCode int32 `thrift:"status_code,1" form:"status_code" json:"status_code" query:"status_code"`
	// 返回状态描述
	StatusMsg *string `thrift:"status_msg,2,optional" form:"status_msg" json:"status_msg,omitempty" query:"status_msg"`
	// 用户列表
	UserList []*FriendUser `thrift:"user_list,3" form:"user_list" json:"user_list" query:"user_list"`
}
var RelationServiceRelationFriendListResult_Success_DEFAULT *RelationFriendListResponse

func NewRelationFriendListResponse

func NewRelationFriendListResponse() *RelationFriendListResponse

func (*RelationFriendListResponse) GetStatusCode

func (p *RelationFriendListResponse) GetStatusCode() (v int32)

func (*RelationFriendListResponse) GetStatusMsg

func (p *RelationFriendListResponse) GetStatusMsg() (v string)

func (*RelationFriendListResponse) GetUserList

func (p *RelationFriendListResponse) GetUserList() (v []*FriendUser)

func (*RelationFriendListResponse) IsSetStatusMsg

func (p *RelationFriendListResponse) IsSetStatusMsg() bool

func (*RelationFriendListResponse) Read

func (p *RelationFriendListResponse) Read(iprot thrift.TProtocol) (err error)

func (*RelationFriendListResponse) ReadField1

func (p *RelationFriendListResponse) ReadField1(iprot thrift.TProtocol) error

func (*RelationFriendListResponse) ReadField2

func (p *RelationFriendListResponse) ReadField2(iprot thrift.TProtocol) error

func (*RelationFriendListResponse) ReadField3

func (p *RelationFriendListResponse) ReadField3(iprot thrift.TProtocol) error

func (*RelationFriendListResponse) String

func (p *RelationFriendListResponse) String() string

func (*RelationFriendListResponse) Write

func (p *RelationFriendListResponse) Write(oprot thrift.TProtocol) (err error)

type RelationService

type RelationService interface {
	// 关注操作
	RelationAction(ctx context.Context, req *RelationActionRequest) (r *RelationActionResponse, err error)
	// 获取关注列表
	RelationFollowList(ctx context.Context, req *RelationFollowListRequest) (r *RelationFollowListResponse, err error)
	// 获取粉丝列表
	RelationFollowerList(ctx context.Context, req *RelationFollowerListRequest) (r *RelationFollowerListResponse, err error)
	// 获取好友列表
	RelationFriendList(ctx context.Context, req *RelationFriendListRequest) (r *RelationFriendListResponse, err error)
}

type RelationServiceClient

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

func NewRelationServiceClient

func NewRelationServiceClient(c thrift.TClient) *RelationServiceClient

func NewRelationServiceClientProtocol

func NewRelationServiceClientProtocol(t thrift.TTransport, iprot thrift.TProtocol, oprot thrift.TProtocol) *RelationServiceClient

func (*RelationServiceClient) Client_

func (p *RelationServiceClient) Client_() thrift.TClient

func (*RelationServiceClient) RelationAction

func (*RelationServiceClient) RelationFollowList

func (*RelationServiceClient) RelationFollowerList

func (*RelationServiceClient) RelationFriendList

type RelationServiceProcessor

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

func NewRelationServiceProcessor

func NewRelationServiceProcessor(handler RelationService) *RelationServiceProcessor

func (*RelationServiceProcessor) AddToProcessorMap

func (p *RelationServiceProcessor) AddToProcessorMap(key string, processor thrift.TProcessorFunction)

func (*RelationServiceProcessor) GetProcessorFunction

func (p *RelationServiceProcessor) GetProcessorFunction(key string) (processor thrift.TProcessorFunction, ok bool)

func (*RelationServiceProcessor) Process

func (p *RelationServiceProcessor) Process(ctx context.Context, iprot, oprot thrift.TProtocol) (success bool, err thrift.TException)

func (*RelationServiceProcessor) ProcessorMap

type RelationServiceRelationActionArgs

type RelationServiceRelationActionArgs struct {
	Req *RelationActionRequest `thrift:"req,1"`
}

func NewRelationServiceRelationActionArgs

func NewRelationServiceRelationActionArgs() *RelationServiceRelationActionArgs

func (*RelationServiceRelationActionArgs) GetReq

func (*RelationServiceRelationActionArgs) IsSetReq

func (*RelationServiceRelationActionArgs) Read

func (*RelationServiceRelationActionArgs) ReadField1

func (*RelationServiceRelationActionArgs) String

func (*RelationServiceRelationActionArgs) Write

type RelationServiceRelationActionResult

type RelationServiceRelationActionResult struct {
	Success *RelationActionResponse `thrift:"success,0,optional"`
}

func NewRelationServiceRelationActionResult

func NewRelationServiceRelationActionResult() *RelationServiceRelationActionResult

func (*RelationServiceRelationActionResult) GetSuccess

func (*RelationServiceRelationActionResult) IsSetSuccess

func (p *RelationServiceRelationActionResult) IsSetSuccess() bool

func (*RelationServiceRelationActionResult) Read

func (*RelationServiceRelationActionResult) ReadField0

func (*RelationServiceRelationActionResult) String

func (*RelationServiceRelationActionResult) Write

type RelationServiceRelationFollowListArgs

type RelationServiceRelationFollowListArgs struct {
	Req *RelationFollowListRequest `thrift:"req,1"`
}

func NewRelationServiceRelationFollowListArgs

func NewRelationServiceRelationFollowListArgs() *RelationServiceRelationFollowListArgs

func (*RelationServiceRelationFollowListArgs) GetReq

func (*RelationServiceRelationFollowListArgs) IsSetReq

func (*RelationServiceRelationFollowListArgs) Read

func (*RelationServiceRelationFollowListArgs) ReadField1

func (*RelationServiceRelationFollowListArgs) String

func (*RelationServiceRelationFollowListArgs) Write

type RelationServiceRelationFollowListResult

type RelationServiceRelationFollowListResult struct {
	Success *RelationFollowListResponse `thrift:"success,0,optional"`
}

func NewRelationServiceRelationFollowListResult

func NewRelationServiceRelationFollowListResult() *RelationServiceRelationFollowListResult

func (*RelationServiceRelationFollowListResult) GetSuccess

func (*RelationServiceRelationFollowListResult) IsSetSuccess

func (*RelationServiceRelationFollowListResult) Read

func (*RelationServiceRelationFollowListResult) ReadField0

func (*RelationServiceRelationFollowListResult) String

func (*RelationServiceRelationFollowListResult) Write

type RelationServiceRelationFollowerListArgs

type RelationServiceRelationFollowerListArgs struct {
	Req *RelationFollowerListRequest `thrift:"req,1"`
}

func NewRelationServiceRelationFollowerListArgs

func NewRelationServiceRelationFollowerListArgs() *RelationServiceRelationFollowerListArgs

func (*RelationServiceRelationFollowerListArgs) GetReq

func (*RelationServiceRelationFollowerListArgs) IsSetReq

func (*RelationServiceRelationFollowerListArgs) Read

func (*RelationServiceRelationFollowerListArgs) ReadField1

func (*RelationServiceRelationFollowerListArgs) String

func (*RelationServiceRelationFollowerListArgs) Write

type RelationServiceRelationFollowerListResult

type RelationServiceRelationFollowerListResult struct {
	Success *RelationFollowerListResponse `thrift:"success,0,optional"`
}

func NewRelationServiceRelationFollowerListResult

func NewRelationServiceRelationFollowerListResult() *RelationServiceRelationFollowerListResult

func (*RelationServiceRelationFollowerListResult) GetSuccess

func (*RelationServiceRelationFollowerListResult) IsSetSuccess

func (*RelationServiceRelationFollowerListResult) Read

func (*RelationServiceRelationFollowerListResult) ReadField0

func (*RelationServiceRelationFollowerListResult) String

func (*RelationServiceRelationFollowerListResult) Write

type RelationServiceRelationFriendListArgs

type RelationServiceRelationFriendListArgs struct {
	Req *RelationFriendListRequest `thrift:"req,1"`
}

func NewRelationServiceRelationFriendListArgs

func NewRelationServiceRelationFriendListArgs() *RelationServiceRelationFriendListArgs

func (*RelationServiceRelationFriendListArgs) GetReq

func (*RelationServiceRelationFriendListArgs) IsSetReq

func (*RelationServiceRelationFriendListArgs) Read

func (*RelationServiceRelationFriendListArgs) ReadField1

func (*RelationServiceRelationFriendListArgs) String

func (*RelationServiceRelationFriendListArgs) Write

type RelationServiceRelationFriendListResult

type RelationServiceRelationFriendListResult struct {
	Success *RelationFriendListResponse `thrift:"success,0,optional"`
}

func NewRelationServiceRelationFriendListResult

func NewRelationServiceRelationFriendListResult() *RelationServiceRelationFriendListResult

func (*RelationServiceRelationFriendListResult) GetSuccess

func (*RelationServiceRelationFriendListResult) IsSetSuccess

func (*RelationServiceRelationFriendListResult) Read

func (*RelationServiceRelationFriendListResult) ReadField0

func (*RelationServiceRelationFriendListResult) String

func (*RelationServiceRelationFriendListResult) Write

type User

type User struct {
	// 用户id
	ID int64 `thrift:"id,1" form:"id" json:"id" query:"id"`
	// 用户名称
	Name string `thrift:"name,2" form:"name" json:"name" query:"name"`
	// 关注总数
	FollowCount *int64 `thrift:"follow_count,3,optional" form:"follow_count" json:"follow_count,omitempty" query:"follow_count"`
	// 粉丝总数
	FollowerCount *int64 `thrift:"follower_count,4,optional" form:"follower_count" json:"follower_count,omitempty" query:"follower_count"`
	// true-已关注,false-未关注
	IsFollow bool `thrift:"is_follow,5" form:"is_follow" json:"is_follow" query:"is_follow"`
	// 用户头像
	Avatar *string `thrift:"avatar,6,optional" form:"avatar" json:"avatar,omitempty" query:"avatar"`
	// 用户个人页顶部大图
	BackgroundImage *string `thrift:"background_image,7,optional" form:"background_image" json:"background_image,omitempty" query:"background_image"`
	// 个人简介
	Signature *string `thrift:"signature,8,optional" form:"signature" json:"signature,omitempty" query:"signature"`
	// 获赞数量
	TotalFavorited *int64 `thrift:"total_favorited,9,optional" form:"total_favorited" json:"total_favorited,omitempty" query:"total_favorited"`
	// 作品数量
	WorkCount *int64 `thrift:"work_count,10,optional" form:"work_count" json:"work_count,omitempty" query:"work_count"`
	// 点赞数量
	FavoriteCount *int64 `thrift:"favorite_count,11,optional" form:"favorite_count" json:"favorite_count,omitempty" query:"favorite_count"`
}
var FriendUser_Base_DEFAULT *User

func NewUser

func NewUser() *User

func (*User) GetAvatar

func (p *User) GetAvatar() (v string)

func (*User) GetBackgroundImage

func (p *User) GetBackgroundImage() (v string)

func (*User) GetFavoriteCount

func (p *User) GetFavoriteCount() (v int64)

func (*User) GetFollowCount

func (p *User) GetFollowCount() (v int64)

func (*User) GetFollowerCount

func (p *User) GetFollowerCount() (v int64)

func (*User) GetID

func (p *User) GetID() (v int64)

func (*User) GetIsFollow

func (p *User) GetIsFollow() (v bool)

func (*User) GetName

func (p *User) GetName() (v string)

func (*User) GetSignature

func (p *User) GetSignature() (v string)

func (*User) GetTotalFavorited

func (p *User) GetTotalFavorited() (v int64)

func (*User) GetWorkCount

func (p *User) GetWorkCount() (v int64)

func (*User) IsSetAvatar

func (p *User) IsSetAvatar() bool

func (*User) IsSetBackgroundImage

func (p *User) IsSetBackgroundImage() bool

func (*User) IsSetFavoriteCount

func (p *User) IsSetFavoriteCount() bool

func (*User) IsSetFollowCount

func (p *User) IsSetFollowCount() bool

func (*User) IsSetFollowerCount

func (p *User) IsSetFollowerCount() bool

func (*User) IsSetSignature

func (p *User) IsSetSignature() bool

func (*User) IsSetTotalFavorited

func (p *User) IsSetTotalFavorited() bool

func (*User) IsSetWorkCount

func (p *User) IsSetWorkCount() bool

func (*User) Read

func (p *User) Read(iprot thrift.TProtocol) (err error)

func (*User) ReadField1

func (p *User) ReadField1(iprot thrift.TProtocol) error

func (*User) ReadField10

func (p *User) ReadField10(iprot thrift.TProtocol) error

func (*User) ReadField11

func (p *User) ReadField11(iprot thrift.TProtocol) error

func (*User) ReadField2

func (p *User) ReadField2(iprot thrift.TProtocol) error

func (*User) ReadField3

func (p *User) ReadField3(iprot thrift.TProtocol) error

func (*User) ReadField4

func (p *User) ReadField4(iprot thrift.TProtocol) error

func (*User) ReadField5

func (p *User) ReadField5(iprot thrift.TProtocol) error

func (*User) ReadField6

func (p *User) ReadField6(iprot thrift.TProtocol) error

func (*User) ReadField7

func (p *User) ReadField7(iprot thrift.TProtocol) error

func (*User) ReadField8

func (p *User) ReadField8(iprot thrift.TProtocol) error

func (*User) ReadField9

func (p *User) ReadField9(iprot thrift.TProtocol) error

func (*User) String

func (p *User) String() string

func (*User) Write

func (p *User) Write(oprot thrift.TProtocol) (err error)

Jump to

Keyboard shortcuts

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