types

package
v1.0.32 Latest Latest
Warning

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

Go to latest
Published: Sep 21, 2024 License: MIT Imports: 0 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type EmailBindRequest

type EmailBindRequest struct {
	Email     string `json:"email"`
	Captcha   string `json:"captcha"`
	CaptchaId string `json:"captchaId"`
	App       string `json:"app"`
	OAuthUid  string `json:"oAuthUid"`
}

type EmailLoginRequest

type EmailLoginRequest struct {
	Email     string `json:"email"`
	Captcha   string `json:"captcha"`
	CaptchaId string `json:"captchaId"`
	App       string `json:"app"`
}

type EmailRegisterRequest

type EmailRegisterRequest struct {
	Email     string  `json:"email"`
	Captcha   string  `json:"captcha"`
	CaptchaId string  `json:"captchaId"`
	App       string  `json:"app"`
	OAuthUid  *string `json:"oAuthUid"`
}

type ExportUserRequest

type ExportUserRequest struct {
	AppId      uint32   `json:"appId"`
	Phone      *string  `json:"phone"`
	Email      *string  `json:"email"`
	Username   *string  `json:"username"`
	RealName   *string  `json:"realName"`
	Gender     *string  `json:"gender"`
	Status     *bool    `json:"status"`
	From       *string  `json:"from"`
	CreatedAts []uint32 `json:"createdAts"`
}

type FieldType

type FieldType struct {
	Type string
	Name string
}

type GenAuthCaptchaRequest

type GenAuthCaptchaRequest struct {
	Type  string `json:"type"`
	Email string `json:"email"`
}

type GenAuthCaptchaResponse

type GenAuthCaptchaResponse struct {
	Id     string `json:"id"`
	Expire int    `json:"expire"`
	Base64 string `json:"base64"`
}

type GetAppRequest

type GetAppRequest struct {
	Id      *uint32 `json:"id"`
	Keyword *string `json:"keyword"`
}

type GetChannelRequest

type GetChannelRequest struct {
	Id      *uint32 `json:"id"`
	Keyword *string `json:"keyword"`
}

type GetUserRequest

type GetUserRequest struct {
	Id       *uint32 `json:"id"`
	Phone    *string `json:"phone"`
	Email    *string `json:"email"`
	Username *string `json:"username"`
}

type ListAppRequest

type ListAppRequest struct {
	Page     uint32   `json:"page"`
	PageSize uint32   `json:"pageSize"`
	Order    *string  `json:"order"`
	OrderBy  *string  `json:"orderBy"`
	Keyword  *string  `json:"keyword"`
	Name     *string  `json:"name"`
	Status   *bool    `json:"status"`
	Ids      []uint32 `json:"ids"`
}

type ListAuthRequest

type ListAuthRequest struct {
	Page     uint32   `json:"page"`
	PageSize uint32   `json:"pageSize"`
	Order    *string  `json:"order"`
	OrderBy  *string  `json:"orderBy"`
	UserId   uint32   `json:"userId"`
	AppIds   []uint32 `json:"appIds"`
}

type ListChannelRequest

type ListChannelRequest struct {
	Page     uint32  `json:"page"`
	PageSize uint32  `json:"pageSize"`
	Order    *string `json:"order"`
	OrderBy  *string `json:"orderBy"`
	Keyword  *string `json:"keyword"`
	Name     *string `json:"name"`
	Status   *bool   `json:"status"`
}

type ListFeedbackCategoryRequest

type ListFeedbackCategoryRequest struct {
	Page     uint32  `json:"page"`
	PageSize uint32  `json:"pageSize"`
	Order    *string `json:"order"`
	OrderBy  *string `json:"orderBy"`
	Name     *string `json:"name"`
}

type ListFeedbackRequest

type ListFeedbackRequest struct {
	Page       uint32   `json:"page"`
	PageSize   uint32   `json:"pageSize"`
	Order      *string  `json:"order"`
	OrderBy    *string  `json:"orderBy"`
	AppId      *uint32  `json:"appId"`
	CategoryId *uint32  `json:"categoryId"`
	Status     *string  `json:"status"`
	Platform   *string  `json:"platform"`
	AppIds     []uint32 `json:"appIds"`
}

type ListFieldRequest

type ListFieldRequest struct {
	Page     uint32  `json:"page"`
	PageSize uint32  `json:"pageSize"`
	Order    *string `json:"order"`
	OrderBy  *string `json:"orderBy"`
	Keyword  *string `json:"keyword"`
	Name     *string `json:"name"`
	Status   *bool   `json:"status"`
}

type ListOAuthRequest

type ListOAuthRequest struct {
	Page     uint32  `json:"page"`
	PageSize uint32  `json:"pageSize"`
	Order    *string `json:"order"`
	OrderBy  *string `json:"orderBy"`
	UserId   uint32  `json:"userId"`
}

type ListTrashUserRequest

type ListTrashUserRequest struct {
	Page       uint32   `json:"page"`
	PageSize   uint32   `json:"pageSize"`
	Order      *string  `json:"order"`
	OrderBy    *string  `json:"orderBy"`
	Phone      *string  `json:"phone"`
	Email      *string  `json:"email"`
	Username   *string  `json:"username"`
	RealName   *string  `json:"realName"`
	Gender     *string  `json:"gender"`
	Status     *bool    `json:"status"`
	From       *string  `json:"from"`
	CreatedAts []uint32 `json:"createdAts"`
	AppId      *uint32  `json:"appId"`
}

type ListUserRequest

type ListUserRequest struct {
	Page       uint32   `json:"page"`
	PageSize   uint32   `json:"pageSize"`
	Order      *string  `json:"order"`
	OrderBy    *string  `json:"orderBy"`
	Phone      *string  `json:"phone"`
	Email      *string  `json:"email"`
	Username   *string  `json:"username"`
	RealName   *string  `json:"realName"`
	Gender     *string  `json:"gender"`
	Status     *bool    `json:"status"`
	From       *string  `json:"from"`
	CreatedAts []uint32 `json:"createdAts"`
	AppId      *uint32  `json:"appId"`
	AppIds     []uint32 `json:"appIds"`
	App        *string  `json:"app"`
	InIds      []uint32 `json:"inIds"`
	NotInIds   []uint32 `json:"notInIds"`
}

type ListUserinfoRequest

type ListUserinfoRequest struct {
	Page       uint32  `json:"page"`
	PageSize   uint32  `json:"pageSize"`
	UserId     uint32  `json:"userId"`
	AppId      *uint32 `json:"appId"`
	AppIds     *uint32 `json:"appIds"`
	AppKeyword *string `json:"appKeyword"`
	Order      *string `json:"order"`
	OrderBy    *string `json:"orderBy"`
}

type OAuthLoginReply

type OAuthLoginReply struct {
	IsBind   bool    `json:"isBind"`
	OAuthUid *string `json:"oAuthUid"`
	Token    *string `json:"token"`
	Expire   *uint32 `json:"expire"`
}

type OAuthLoginRequest

type OAuthLoginRequest struct {
	App     string `json:"app"`
	Code    string `json:"code"`
	Channel string `json:"channel"`
}

type Password

type Password struct {
	Password string `json:"password"`
	Time     int64  `json:"time"`
}

type PasswordBindRequest

type PasswordBindRequest struct {
	Username  string `json:"username"`
	Password  string `json:"password"`
	Captcha   string `json:"captcha"`
	CaptchaId string `json:"captchaId"`
	App       string `json:"app"`
	OAuthUid  string `json:"oAuthUid"`
}

type PasswordLoginReply

type PasswordLoginReply struct {
	Token  string `json:"token"`
	Expire uint32 `json:"expire"`
}

type PasswordLoginRequest

type PasswordLoginRequest struct {
	Username  string `json:"username"`
	Password  string `json:"password"`
	Captcha   string `json:"captcha"`
	CaptchaId string `json:"captchaId"`
	App       string `json:"app"`
}

type PasswordRegisterRequest

type PasswordRegisterRequest struct {
	Username  string  `json:"username"`
	Password  string  `json:"password"`
	Captcha   string  `json:"captcha"`
	CaptchaId string  `json:"captchaId"`
	App       string  `json:"app"`
	OAuthUid  *string `json:"oAuthUid"`
}

type TokenInfo

type TokenInfo struct {
	Token  string `json:"token"`
	Expire uint32 `json:"expire"`
}

type UpdateAppStatusRequest

type UpdateAppStatusRequest struct {
	Id          uint32  `json:"id"`
	Status      bool    `json:"status"`
	DisableDesc *string `json:"disableDesc"`
}

type UpdateAuthStatusRequest

type UpdateAuthStatusRequest struct {
	Id          uint32
	Status      bool
	DisableDesc *string
}

type UpdateCurrentUserRequest

type UpdateCurrentUserRequest struct {
	NickName string `json:"nickName"`
	Avatar   string `json:"avatar"`
	Gender   string `json:"gender"`
}

type UpdateOAuthStatusRequest

type UpdateOAuthStatusRequest struct {
	Id          uint32
	Status      bool
	DisableDesc *string
}

type UpdateUserStatusRequest

type UpdateUserStatusRequest struct {
	Id          uint32  `json:"id"`
	Status      bool    `json:"status"`
	DisableDesc *string `json:"disableDesc"`
}

Jump to

Keyboard shortcuts

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