v20240801

package
v3.0.1019+incompatible Latest Latest
Warning

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

Go to latest
Published: Aug 12, 2024 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

View Source
const (

	// CAM signature/authentication error.
	AUTHFAILURE = "AuthFailure"

	// DryRun operation, indicating that the request will be successful, but with an additional DryRun parameter.
	DRYRUNOPERATION = "DryRunOperation"

	// Operation failed.
	FAILEDOPERATION = "FailedOperation"

	// Failed to delete: the application is bound with an ongoing approval ticket.
	FAILEDOPERATION_APPALREADYBINDAUDIT = "FailedOperation.AppAlreadyBindAudit"

	// Failed to delete: This app is bound to a mini program.
	FAILEDOPERATION_APPALREADYBINDMINIPROGRAM = "FailedOperation.AppAlreadyBindMiniProgram"

	// The domain name is already in the blocklist.
	FAILEDOPERATION_EXISTBLACKDOMAIN = "FailedOperation.ExistBlackDomain"

	// The team name already exists.
	FAILEDOPERATION_EXISTENTERPRISENAME = "FailedOperation.ExistEnterpriseName"

	// Failed to add: The domain name URL already exists.
	FAILEDOPERATION_EXISTREPEATDOMAINURL = "FailedOperation.ExistRepeatDomainUrl"

	// The sensitive API already exists.
	FAILEDOPERATION_EXISTSENSITIVEAPI = "FailedOperation.ExistSensitiveAPI"

	// The domain name is already in the allowlist.
	FAILEDOPERATION_EXISTWHITEDOMAIN = "FailedOperation.ExistWhiteDomain"

	// Failed to obtain the operation resource.
	FAILEDOPERATION_GETOPERATERESOURCEFAILED = "FailedOperation.GetOperateResourceFailed"

	// Invalid team information
	FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"

	// User login authentication failed.
	FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"

	// Failed to parse the mini program icon.
	FAILEDOPERATION_MINIPROGRAMICONANALYSISFAILED = "FailedOperation.MiniProgramIconAnalysisFailed"

	// Unauthorized operation
	FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"

	// The current team does not have the permission to create applications.
	FAILEDOPERATION_OPERATIONSTEAMNOAPPLICATIONPERMISSION = "FailedOperation.OperationsTeamNoApplicationPermission"

	// The current operation team does not have permission to create a mini program.
	FAILEDOPERATION_OPERATIONSTEAMNOMINIPROGRAMPERMISSION = "FailedOperation.OperationsTeamNoMiniProgramPermission"

	// The record does not exist.
	FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"

	// Failed to parse request parameters.
	FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"

	// The preview version already exists.
	FAILEDOPERATION_SHOWCASEVERSIONALREADYEXIST = "FailedOperation.ShowcaseVersionAlreadyExist"

	// System error.
	FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"

	// Internal error
	INTERNALERROR = "InternalError"

	// Incorrect parameter.
	INVALIDPARAMETER = "InvalidParameter"

	// Invalid parameter value.
	INVALIDPARAMETERVALUE = "InvalidParameterValue"

	// The application name already exists.
	INVALIDPARAMETERVALUE_APPNAMEALREADYEXIST = "InvalidParameterValue.AppNameAlreadyExist"

	// The account already exists.
	INVALIDPARAMETERVALUE_EXISTUSERACCOUNT = "InvalidParameterValue.ExistUserAccount"

	// Invalid mini program ID.
	INVALIDPARAMETERVALUE_INVALIDMINIAPPID = "InvalidParameterValue.InvalidMiniAppId"

	// Invalid team ID
	INVALIDPARAMETERVALUE_INVALIDTEAMID = "InvalidParameterValue.InvalidTeamId"

	// Invalid user
	INVALIDPARAMETERVALUE_INVALIDUSERID = "InvalidParameterValue.InvalidUserId"

	// The mini program name already exists.
	INVALIDPARAMETERVALUE_MINIPROGRAMNAMEALREADYEXIST = "InvalidParameterValue.MiniProgramNameAlreadyExist"

	// Invalid team type
	INVALIDPARAMETERVALUE_TEAMTYPEMISMATCH = "InvalidParameterValue.TeamTypeMismatch"

	// The user is not in the specified team.
	INVALIDPARAMETERVALUE_USERTEAMRELATIONNOTEXIST = "InvalidParameterValue.UserTeamRelationNotExist"

	// Missing required parameters.
	MISSINGPARAMETER = "MissingParameter"

	// No valid login information found.
	MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

	// Operation denied.
	OPERATIONDENIED = "OperationDenied"

	// Too frequent requests
	REQUESTLIMITEXCEEDED = "RequestLimitExceeded"

	// The resource is occupied.
	RESOURCEINUSE = "ResourceInUse"

	// Insufficient resources.
	RESOURCEINSUFFICIENT = "ResourceInsufficient"

	// The resource does not exist.
	RESOURCENOTFOUND = "ResourceNotFound"

	// The resource is not available.
	RESOURCEUNAVAILABLE = "ResourceUnavailable"

	// Unauthorized operation.
	UNAUTHORIZEDOPERATION = "UnauthorizedOperation"

	// Unknow parameter error.
	UNKNOWNPARAMETER = "UnknownParameter"

	// The operation is not supported.
	UNSUPPORTEDOPERATION = "UnsupportedOperation"
)
View Source
const APIVersion = "2024-08-01"

Variables

This section is empty.

Functions

This section is empty.

Types

type AddTeamMemberRequest

type AddTeamMemberRequest struct {
	*tchttp.BaseRequest

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Members to be added
	MemberList []*CreateTeamMemberInfoReq `json:"MemberList,omitnil,omitempty" name:"MemberList"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewAddTeamMemberRequest

func NewAddTeamMemberRequest() (request *AddTeamMemberRequest)

func (*AddTeamMemberRequest) FromJsonString

func (r *AddTeamMemberRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*AddTeamMemberRequest) ToJsonString

func (r *AddTeamMemberRequest) ToJsonString() string

type AddTeamMemberRequestParams

type AddTeamMemberRequestParams struct {
	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Members to be added
	MemberList []*CreateTeamMemberInfoReq `json:"MemberList,omitnil,omitempty" name:"MemberList"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type AddTeamMemberResponse

type AddTeamMemberResponse struct {
	*tchttp.BaseResponse
	Response *AddTeamMemberResponseParams `json:"Response"`
}

func NewAddTeamMemberResponse

func NewAddTeamMemberResponse() (response *AddTeamMemberResponse)

func (*AddTeamMemberResponse) FromJsonString

func (r *AddTeamMemberResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*AddTeamMemberResponse) ToJsonString

func (r *AddTeamMemberResponse) ToJsonString() string

type AddTeamMemberResponseParams

type AddTeamMemberResponseParams struct {
	// Response data
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type ApplicationDetail

type ApplicationDetail struct {
	// Application ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationID *string `json:"ApplicationID,omitnil,omitempty" name:"ApplicationID"`

	// Product ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	AppIdentityID *int64 `json:"AppIdentityID,omitnil,omitempty" name:"AppIdentityID"`

	// The application name.
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationName *string `json:"ApplicationName,omitnil,omitempty" name:"ApplicationName"`

	// English name of the application (this field is not used yet)
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationEnglishName *string `json:"ApplicationEnglishName,omitnil,omitempty" name:"ApplicationEnglishName"`

	// Note: This field may return null, indicating that no valid values can be obtained.
	Logo *string `json:"Logo,omitnil,omitempty" name:"Logo"`

	// Remarks
	// Note: This field may return null, indicating that no valid values can be obtained.
	Remark *string `json:"Remark,omitnil,omitempty" name:"Remark"`

	// Android package name
	// Note: This field may return null, indicating that no valid values can be obtained.
	AndroidAppKey *string `json:"AndroidAppKey,omitnil,omitempty" name:"AndroidAppKey"`

	// iOS bundleId
	// Note: This field may return null, indicating that no valid values can be obtained.
	IosAppKey *string `json:"IosAppKey,omitnil,omitempty" name:"IosAppKey"`

	// Creator
	// Note: This field may return null, indicating that no valid values can be obtained.
	CreateUser *string `json:"CreateUser,omitnil,omitempty" name:"CreateUser"`

	// The creation time.
	// Note: This field may return null, indicating that no valid values can be obtained.
	CreateTime *string `json:"CreateTime,omitnil,omitempty" name:"CreateTime"`

	// Updated by
	// Note: This field may return null, indicating that no valid values can be obtained.
	UpdateUser *string `json:"UpdateUser,omitnil,omitempty" name:"UpdateUser"`

	// Update date
	// Note: This field may return null, indicating that no valid values can be obtained.
	UpdateTime *string `json:"UpdateTime,omitnil,omitempty" name:"UpdateTime"`

	// Number of bound mini programs
	// Note: This field may return null, indicating that no valid values can be obtained.
	BindMNPCount *int64 `json:"BindMNPCount,omitnil,omitempty" name:"BindMNPCount"`

	// Information of bound mini programs
	// Note: This field may return null, indicating that no valid values can be obtained.
	BindMNPList []*ApplicationMNPRelInfoResp `json:"BindMNPList,omitnil,omitempty" name:"BindMNPList"`

	// Application description
	// Note: This field may return null, indicating that no valid values can be obtained.
	Intro *string `json:"Intro,omitnil,omitempty" name:"Intro"`

	// Android App download address
	// Note: This field may return null, indicating that no valid values can be obtained.
	AndroidAppUrl *string `json:"AndroidAppUrl,omitnil,omitempty" name:"AndroidAppUrl"`

	// iOS App download address
	// Note: This field may return null, indicating that no valid values can be obtained.
	IosAppUrl *string `json:"IosAppUrl,omitnil,omitempty" name:"IosAppUrl"`

	// Team ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Team name
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamName *string `json:"TeamName,omitnil,omitempty" name:"TeamName"`

	// Quantity of sensitive APIs
	// Note: This field may return null, indicating that no valid values can be obtained.
	SensitiveApiCount *int64 `json:"SensitiveApiCount,omitnil,omitempty" name:"SensitiveApiCount"`

	// Application type. 1: Test; 2: Formal
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationType *int64 `json:"ApplicationType,omitnil,omitempty" name:"ApplicationType"`
}

type ApplicationInfo

type ApplicationInfo struct {
	// Platform ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	CustomerID *string `json:"CustomerID,omitnil,omitempty" name:"CustomerID"`

	// Application ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationID *string `json:"ApplicationID,omitnil,omitempty" name:"ApplicationID"`

	// Product ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	AppIdentityID *int64 `json:"AppIdentityID,omitnil,omitempty" name:"AppIdentityID"`

	// Name
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationName *string `json:"ApplicationName,omitnil,omitempty" name:"ApplicationName"`

	// English name
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationEnglishName *string `json:"ApplicationEnglishName,omitnil,omitempty" name:"ApplicationEnglishName"`

	Logo *string `json:"Logo,omitnil,omitempty" name:"Logo"`

	// Remarks
	Remark *string `json:"Remark,omitnil,omitempty" name:"Remark"`

	// Android package name
	// Note: This field may return null, indicating that no valid values can be obtained.
	AndroidAppKey *string `json:"AndroidAppKey,omitnil,omitempty" name:"AndroidAppKey"`

	// iOS bundleId
	// Note: This field may return null, indicating that no valid values can be obtained.
	IosAppKey *string `json:"IosAppKey,omitnil,omitempty" name:"IosAppKey"`

	// Creator
	// Note: This field may return null, indicating that no valid values can be obtained.
	CreateUser *string `json:"CreateUser,omitnil,omitempty" name:"CreateUser"`

	// Creation time
	// Note: This field may return null, indicating that no valid values can be obtained.
	CreateTime *string `json:"CreateTime,omitnil,omitempty" name:"CreateTime"`

	// Updater
	// Note: This field may return null, indicating that no valid values can be obtained.
	UpdateUser *string `json:"UpdateUser,omitnil,omitempty" name:"UpdateUser"`

	// Update date
	// Note: This field may return null, indicating that no valid values can be obtained.
	UpdateTime *string `json:"UpdateTime,omitnil,omitempty" name:"UpdateTime"`

	// Introduction
	Intro *string `json:"Intro,omitnil,omitempty" name:"Intro"`

	// iOS app download address
	IosAppUrl *string `json:"IosAppUrl,omitnil,omitempty" name:"IosAppUrl"`

	// Android app download address
	AndroidAppUrl *string `json:"AndroidAppUrl,omitnil,omitempty" name:"AndroidAppUrl"`

	// Team ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Team name
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamName *string `json:"TeamName,omitnil,omitempty" name:"TeamName"`

	// Number of privacy APIs
	// Note: This field may return null, indicating that no valid values can be obtained.
	SensitiveApiCount *int64 `json:"SensitiveApiCount,omitnil,omitempty" name:"SensitiveApiCount"`

	// Application type 1-Test 2-Formal
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationType *uint64 `json:"ApplicationType,omitnil,omitempty" name:"ApplicationType"`
}

type ApplicationMNPRelInfoResp

type ApplicationMNPRelInfoResp struct {
	// Mini program ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Mini program name
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPName *string `json:"MNPName,omitnil,omitempty" name:"MNPName"`

	// Mini program icon
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPIcon *string `json:"MNPIcon,omitnil,omitempty" name:"MNPIcon"`

	// Mini program type
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPType *string `json:"MNPType,omitnil,omitempty" name:"MNPType"`

	// Introduction
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPIntro *string `json:"MNPIntro,omitnil,omitempty" name:"MNPIntro"`

	// Description
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPDesc *string `json:"MNPDesc,omitnil,omitempty" name:"MNPDesc"`

	// Effectiveness. 1: Not effective 2: Effective
	// Note: This field may return null, indicating that no valid values can be obtained.
	EffectStatus *int64 `json:"EffectStatus,omitnil,omitempty" name:"EffectStatus"`

	// Effective version
	// Note: This field may return null, indicating that no valid values can be obtained.
	EffectMNPVersion *string `json:"EffectMNPVersion,omitnil,omitempty" name:"EffectMNPVersion"`

	// Online version
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPOnlineVersion *string `json:"MNPOnlineVersion,omitnil,omitempty" name:"MNPOnlineVersion"`

	// 0: Not released; 1: Released
	// Note: This field may return null, indicating that no valid values can be obtained.
	OnlineStatus *int64 `json:"OnlineStatus,omitnil,omitempty" name:"OnlineStatus"`
}

type ApplicationPageInfo

type ApplicationPageInfo struct {
	// Total number of results.
	// Note: This field may return null, indicating that no valid values can be obtained.
	TotalCount *int64 `json:"TotalCount,omitnil,omitempty" name:"TotalCount"`

	// List information
	// Note: This field may return null, indicating that no valid values can be obtained.
	DataList []*ApplicationInfo `json:"DataList,omitnil,omitempty" name:"DataList"`
}

type ApplicationSimpleInfo

type ApplicationSimpleInfo struct {
	// Application ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// Application name
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationName *string `json:"ApplicationName,omitnil,omitempty" name:"ApplicationName"`
}

type ApplicationSimpleInfoResp

type ApplicationSimpleInfoResp struct {
	// Application ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationID *string `json:"ApplicationID,omitnil,omitempty" name:"ApplicationID"`

	// Product ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	AppIdentityID *int64 `json:"AppIdentityID,omitnil,omitempty" name:"AppIdentityID"`

	// The application name.
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationName *string `json:"ApplicationName,omitnil,omitempty" name:"ApplicationName"`
}

type ApplicationSimpleListInfoResp

type ApplicationSimpleListInfoResp struct {
	// Total number of results.
	// Note: This field may return null, indicating that no valid values can be obtained.
	TotalCount *int64 `json:"TotalCount,omitnil,omitempty" name:"TotalCount"`

	// List information
	// Note: This field may return null, indicating that no valid values can be obtained.
	DataList []*ApplicationSimpleInfoResp `json:"DataList,omitnil,omitempty" name:"DataList"`
}

type AuditInfoReq

type AuditInfoReq struct {
	// Application ID
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// Approval status 2- Rejected
	// 3 - Approved
	AuditStatus *int64 `json:"AuditStatus,omitnil,omitempty" name:"AuditStatus"`

	// Approval description
	AuditNote *string `json:"AuditNote,omitnil,omitempty" name:"AuditNote"`
}

type BooleanInfo

type BooleanInfo struct {
	// Bool type response object
	// Note: This field may return null, indicating that no valid values can be obtained.
	Result *bool `json:"Result,omitnil,omitempty" name:"Result"`
}

type CheckGlobalDomainRequest

type CheckGlobalDomainRequest struct {
	*tchttp.BaseRequest

	// Domain name list
	DomainUrlList []*string `json:"DomainUrlList,omitnil,omitempty" name:"DomainUrlList"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewCheckGlobalDomainRequest

func NewCheckGlobalDomainRequest() (request *CheckGlobalDomainRequest)

func (*CheckGlobalDomainRequest) FromJsonString

func (r *CheckGlobalDomainRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CheckGlobalDomainRequest) ToJsonString

func (r *CheckGlobalDomainRequest) ToJsonString() string

type CheckGlobalDomainRequestParams

type CheckGlobalDomainRequestParams struct {
	// Domain name list
	DomainUrlList []*string `json:"DomainUrlList,omitnil,omitempty" name:"DomainUrlList"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type CheckGlobalDomainResponse

type CheckGlobalDomainResponse struct {
	*tchttp.BaseResponse
	Response *CheckGlobalDomainResponseParams `json:"Response"`
}

func NewCheckGlobalDomainResponse

func NewCheckGlobalDomainResponse() (response *CheckGlobalDomainResponse)

func (*CheckGlobalDomainResponse) FromJsonString

func (r *CheckGlobalDomainResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CheckGlobalDomainResponse) ToJsonString

func (r *CheckGlobalDomainResponse) ToJsonString() string

type CheckGlobalDomainResponseParams

type CheckGlobalDomainResponseParams struct {
	// Response data
	Data *GlobalDomainCheckResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type Client

type Client struct {
	common.Client
}

func NewClient

func NewClient(credential common.CredentialIface, region string, clientProfile *profile.ClientProfile) (client *Client, err error)

func NewClientWithSecretId

func NewClientWithSecretId(secretId, secretKey, region string) (client *Client, err error)

Deprecated

func (*Client) AddTeamMember

func (c *Client) AddTeamMember(request *AddTeamMemberRequest) (response *AddTeamMemberResponse, err error)

AddTeamMember This API is used to add users to a team

error code that may be returned:

FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_INVALIDUSERID = "InvalidParameterValue.InvalidUserId"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
RESOURCEINSUFFICIENT = "ResourceInsufficient"
RESOURCEUNAVAILABLE = "ResourceUnavailable"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) AddTeamMemberWithContext

func (c *Client) AddTeamMemberWithContext(ctx context.Context, request *AddTeamMemberRequest) (response *AddTeamMemberResponse, err error)

AddTeamMember This API is used to add users to a team

error code that may be returned:

FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_INVALIDUSERID = "InvalidParameterValue.InvalidUserId"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
RESOURCEINSUFFICIENT = "ResourceInsufficient"
RESOURCEUNAVAILABLE = "ResourceUnavailable"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) CheckGlobalDomain

func (c *Client) CheckGlobalDomain(request *CheckGlobalDomainRequest) (response *CheckGlobalDomainResponse, err error)

CheckGlobalDomain This API is used to query if the domain is in the allowlist or blocklist

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_EXISTBLACKDOMAIN = "FailedOperation.ExistBlackDomain"
FAILEDOPERATION_EXISTWHITEDOMAIN = "FailedOperation.ExistWhiteDomain"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) CheckGlobalDomainWithContext

func (c *Client) CheckGlobalDomainWithContext(ctx context.Context, request *CheckGlobalDomainRequest) (response *CheckGlobalDomainResponse, err error)

CheckGlobalDomain This API is used to query if the domain is in the allowlist or blocklist

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_EXISTBLACKDOMAIN = "FailedOperation.ExistBlackDomain"
FAILEDOPERATION_EXISTWHITEDOMAIN = "FailedOperation.ExistWhiteDomain"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) CreateApplication

func (c *Client) CreateApplication(request *CreateApplicationRequest) (response *CreateApplicationResponse, err error)

CreateApplication This API is used to add an application

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_GETOPERATERESOURCEFAILED = "FailedOperation.GetOperateResourceFailed"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_OPERATIONSTEAMNOAPPLICATIONPERMISSION = "FailedOperation.OperationsTeamNoApplicationPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_TEAMTYPEMISMATCH = "InvalidParameterValue.TeamTypeMismatch"
MISSINGPARAMETER = "MissingParameter"

func (*Client) CreateApplicationWithContext

func (c *Client) CreateApplicationWithContext(ctx context.Context, request *CreateApplicationRequest) (response *CreateApplicationResponse, err error)

CreateApplication This API is used to add an application

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_GETOPERATERESOURCEFAILED = "FailedOperation.GetOperateResourceFailed"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_OPERATIONSTEAMNOAPPLICATIONPERMISSION = "FailedOperation.OperationsTeamNoApplicationPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_TEAMTYPEMISMATCH = "InvalidParameterValue.TeamTypeMismatch"
MISSINGPARAMETER = "MissingParameter"

func (*Client) CreateConsoleMNPVersionCompileTask

func (c *Client) CreateConsoleMNPVersionCompileTask(request *CreateConsoleMNPVersionCompileTaskRequest) (response *CreateConsoleMNPVersionCompileTaskResponse, err error)

CreateConsoleMNPVersionCompileTask This API is used to add new mini program version to the console

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETERVALUE_INVALIDMINIAPPID = "InvalidParameterValue.InvalidMiniAppId"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) CreateConsoleMNPVersionCompileTaskWithContext

func (c *Client) CreateConsoleMNPVersionCompileTaskWithContext(ctx context.Context, request *CreateConsoleMNPVersionCompileTaskRequest) (response *CreateConsoleMNPVersionCompileTaskResponse, err error)

CreateConsoleMNPVersionCompileTask This API is used to add new mini program version to the console

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETERVALUE_INVALIDMINIAPPID = "InvalidParameterValue.InvalidMiniAppId"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) CreateDomain

func (c *Client) CreateDomain(request *CreateDomainRequest) (response *CreateDomainResponse, err error)

CreateDomain This API is used to create a mini program service domain

error code that may be returned:

FAILEDOPERATION_EXISTREPEATDOMAINURL = "FailedOperation.ExistRepeatDomainUrl"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) CreateDomainWithContext

func (c *Client) CreateDomainWithContext(ctx context.Context, request *CreateDomainRequest) (response *CreateDomainResponse, err error)

CreateDomain This API is used to create a mini program service domain

error code that may be returned:

FAILEDOPERATION_EXISTREPEATDOMAINURL = "FailedOperation.ExistRepeatDomainUrl"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) CreateGlobalDomain

func (c *Client) CreateGlobalDomain(request *CreateGlobalDomainRequest) (response *CreateGlobalDomainResponse, err error)

CreateGlobalDomain This API is used to add domains to allowlist or blocklist

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_EXISTBLACKDOMAIN = "FailedOperation.ExistBlackDomain"
FAILEDOPERATION_EXISTWHITEDOMAIN = "FailedOperation.ExistWhiteDomain"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_USERTEAMRELATIONNOTEXIST = "InvalidParameterValue.UserTeamRelationNotExist"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
RESOURCEINUSE = "ResourceInUse"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) CreateGlobalDomainWithContext

func (c *Client) CreateGlobalDomainWithContext(ctx context.Context, request *CreateGlobalDomainRequest) (response *CreateGlobalDomainResponse, err error)

CreateGlobalDomain This API is used to add domains to allowlist or blocklist

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_EXISTBLACKDOMAIN = "FailedOperation.ExistBlackDomain"
FAILEDOPERATION_EXISTWHITEDOMAIN = "FailedOperation.ExistWhiteDomain"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_USERTEAMRELATIONNOTEXIST = "InvalidParameterValue.UserTeamRelationNotExist"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
RESOURCEINUSE = "ResourceInUse"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) CreateMNP

func (c *Client) CreateMNP(request *CreateMNPRequest) (response *CreateMNPResponse, err error)

CreateMNP This API is used to create a mini program

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_MINIPROGRAMICONANALYSISFAILED = "FailedOperation.MiniProgramIconAnalysisFailed"
FAILEDOPERATION_OPERATIONSTEAMNOMINIPROGRAMPERMISSION = "FailedOperation.OperationsTeamNoMiniProgramPermission"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_MINIPROGRAMNAMEALREADYEXIST = "InvalidParameterValue.MiniProgramNameAlreadyExist"
INVALIDPARAMETERVALUE_TEAMTYPEMISMATCH = "InvalidParameterValue.TeamTypeMismatch"
MISSINGPARAMETER = "MissingParameter"

func (*Client) CreateMNPWithContext

func (c *Client) CreateMNPWithContext(ctx context.Context, request *CreateMNPRequest) (response *CreateMNPResponse, err error)

CreateMNP This API is used to create a mini program

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_MINIPROGRAMICONANALYSISFAILED = "FailedOperation.MiniProgramIconAnalysisFailed"
FAILEDOPERATION_OPERATIONSTEAMNOMINIPROGRAMPERMISSION = "FailedOperation.OperationsTeamNoMiniProgramPermission"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_MINIPROGRAMNAMEALREADYEXIST = "InvalidParameterValue.MiniProgramNameAlreadyExist"
INVALIDPARAMETERVALUE_TEAMTYPEMISMATCH = "InvalidParameterValue.TeamTypeMismatch"
MISSINGPARAMETER = "MissingParameter"

func (*Client) CreateOnlineApply

func (c *Client) CreateOnlineApply(request *CreateOnlineApplyRequest) (response *CreateOnlineApplyResponse, err error)

CreateOnlineApply This API is used to release the mini program

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"

func (*Client) CreateOnlineApplyWithContext

func (c *Client) CreateOnlineApplyWithContext(ctx context.Context, request *CreateOnlineApplyRequest) (response *CreateOnlineApplyResponse, err error)

CreateOnlineApply This API is used to release the mini program

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"

func (*Client) CreatePlatformAudit

func (c *Client) CreatePlatformAudit(request *CreatePlatformAuditRequest) (response *CreatePlatformAuditResponse, err error)

CreatePlatformAudit This API is used to submit mini program version for approval

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"

func (*Client) CreatePlatformAuditWithContext

func (c *Client) CreatePlatformAuditWithContext(ctx context.Context, request *CreatePlatformAuditRequest) (response *CreatePlatformAuditResponse, err error)

CreatePlatformAudit This API is used to submit mini program version for approval

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"

func (*Client) CreatePresetKey

func (c *Client) CreatePresetKey(request *CreatePresetKeyRequest) (response *CreatePresetKeyResponse, err error)

CreatePresetKey This API is used to obtain the encryption key

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) CreatePresetKeyWithContext

func (c *Client) CreatePresetKeyWithContext(ctx context.Context, request *CreatePresetKeyRequest) (response *CreatePresetKeyResponse, err error)

CreatePresetKey This API is used to obtain the encryption key

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) CreateSensitiveAPI

func (c *Client) CreateSensitiveAPI(request *CreateSensitiveAPIRequest) (response *CreateSensitiveAPIResponse, err error)

CreateSensitiveAPI This API is used to add a sensitive API

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_EXISTSENSITIVEAPI = "FailedOperation.ExistSensitiveAPI"
FAILEDOPERATION_GETOPERATERESOURCEFAILED = "FailedOperation.GetOperateResourceFailed"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) CreateSensitiveAPIWithContext

func (c *Client) CreateSensitiveAPIWithContext(ctx context.Context, request *CreateSensitiveAPIRequest) (response *CreateSensitiveAPIResponse, err error)

CreateSensitiveAPI This API is used to add a sensitive API

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_EXISTSENSITIVEAPI = "FailedOperation.ExistSensitiveAPI"
FAILEDOPERATION_GETOPERATERESOURCEFAILED = "FailedOperation.GetOperateResourceFailed"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) CreateSensitiveApiApply

func (c *Client) CreateSensitiveApiApply(request *CreateSensitiveApiApplyRequest) (response *CreateSensitiveApiApplyResponse, err error)

CreateSensitiveApiApply This API is used to apply for sensitive API call permissions

error code that may be returned:

FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) CreateSensitiveApiApplyWithContext

func (c *Client) CreateSensitiveApiApplyWithContext(ctx context.Context, request *CreateSensitiveApiApplyRequest) (response *CreateSensitiveApiApplyResponse, err error)

CreateSensitiveApiApply This API is used to apply for sensitive API call permissions

error code that may be returned:

FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) CreateTeam

func (c *Client) CreateTeam(request *CreateTeamRequest) (response *CreateTeamResponse, err error)

CreateTeam This API is used to create a team

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_EXISTENTERPRISENAME = "FailedOperation.ExistEnterpriseName"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"

func (*Client) CreateTeamMember

func (c *Client) CreateTeamMember(request *CreateTeamMemberRequest) (response *CreateTeamMemberResponse, err error)

CreateTeamMember This API is used to add team members

error code that may be returned:

FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_EXISTUSERACCOUNT = "InvalidParameterValue.ExistUserAccount"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
RESOURCENOTFOUND = "ResourceNotFound"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) CreateTeamMemberWithContext

func (c *Client) CreateTeamMemberWithContext(ctx context.Context, request *CreateTeamMemberRequest) (response *CreateTeamMemberResponse, err error)

CreateTeamMember This API is used to add team members

error code that may be returned:

FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_EXISTUSERACCOUNT = "InvalidParameterValue.ExistUserAccount"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
RESOURCENOTFOUND = "ResourceNotFound"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) CreateTeamWithContext

func (c *Client) CreateTeamWithContext(ctx context.Context, request *CreateTeamRequest) (response *CreateTeamResponse, err error)

CreateTeam This API is used to create a team

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_EXISTENTERPRISENAME = "FailedOperation.ExistEnterpriseName"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"

func (*Client) CreateUser

func (c *Client) CreateUser(request *CreateUserRequest) (response *CreateUserResponse, err error)

CreateUser This API is used to create a user

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETERVALUE_EXISTUSERACCOUNT = "InvalidParameterValue.ExistUserAccount"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) CreateUserWithContext

func (c *Client) CreateUserWithContext(ctx context.Context, request *CreateUserRequest) (response *CreateUserResponse, err error)

CreateUser This API is used to create a user

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETERVALUE_EXISTUSERACCOUNT = "InvalidParameterValue.ExistUserAccount"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DeleteApplication

func (c *Client) DeleteApplication(request *DeleteApplicationRequest) (response *DeleteApplicationResponse, err error)

DeleteApplication This API is used to delete applications

error code that may be returned:

FAILEDOPERATION_APPALREADYBINDAUDIT = "FailedOperation.AppAlreadyBindAudit"
FAILEDOPERATION_APPALREADYBINDMINIPROGRAM = "FailedOperation.AppAlreadyBindMiniProgram"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
RESOURCENOTFOUND = "ResourceNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) DeleteApplicationWithContext

func (c *Client) DeleteApplicationWithContext(ctx context.Context, request *DeleteApplicationRequest) (response *DeleteApplicationResponse, err error)

DeleteApplication This API is used to delete applications

error code that may be returned:

FAILEDOPERATION_APPALREADYBINDAUDIT = "FailedOperation.AppAlreadyBindAudit"
FAILEDOPERATION_APPALREADYBINDMINIPROGRAM = "FailedOperation.AppAlreadyBindMiniProgram"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
RESOURCENOTFOUND = "ResourceNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) DeleteGlobalDomain

func (c *Client) DeleteGlobalDomain(request *DeleteGlobalDomainRequest) (response *DeleteGlobalDomainResponse, err error)

DeleteGlobalDomain This API is used to delete domains from allowlist or blocklist

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_USERTEAMRELATIONNOTEXIST = "InvalidParameterValue.UserTeamRelationNotExist"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
RESOURCENOTFOUND = "ResourceNotFound"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) DeleteGlobalDomainWithContext

func (c *Client) DeleteGlobalDomainWithContext(ctx context.Context, request *DeleteGlobalDomainRequest) (response *DeleteGlobalDomainResponse, err error)

DeleteGlobalDomain This API is used to delete domains from allowlist or blocklist

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_USERTEAMRELATIONNOTEXIST = "InvalidParameterValue.UserTeamRelationNotExist"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
RESOURCENOTFOUND = "ResourceNotFound"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) DeleteMNP

func (c *Client) DeleteMNP(request *DeleteMNPRequest) (response *DeleteMNPResponse, err error)

DeleteMNP This API is used to delete the mini program

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
RESOURCENOTFOUND = "ResourceNotFound"

func (*Client) DeleteMNPWithContext

func (c *Client) DeleteMNPWithContext(ctx context.Context, request *DeleteMNPRequest) (response *DeleteMNPResponse, err error)

DeleteMNP This API is used to delete the mini program

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
RESOURCENOTFOUND = "ResourceNotFound"

func (*Client) DeleteSensitiveAPI

func (c *Client) DeleteSensitiveAPI(request *DeleteSensitiveAPIRequest) (response *DeleteSensitiveAPIResponse, err error)

DeleteSensitiveAPI This API is used to delete a sensitive API

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"

func (*Client) DeleteSensitiveAPIWithContext

func (c *Client) DeleteSensitiveAPIWithContext(ctx context.Context, request *DeleteSensitiveAPIRequest) (response *DeleteSensitiveAPIResponse, err error)

DeleteSensitiveAPI This API is used to delete a sensitive API

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"

func (*Client) DeleteTeam

func (c *Client) DeleteTeam(request *DeleteTeamRequest) (response *DeleteTeamResponse, err error)

DeleteTeam This API is used to delete a team

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
OPERATIONDENIED = "OperationDenied"
REQUESTLIMITEXCEEDED = "RequestLimitExceeded"
RESOURCENOTFOUND = "ResourceNotFound"

func (*Client) DeleteTeamMember

func (c *Client) DeleteTeamMember(request *DeleteTeamMemberRequest) (response *DeleteTeamMemberResponse, err error)

DeleteTeamMember This API is used to delete a team member

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
RESOURCENOTFOUND = "ResourceNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) DeleteTeamMemberWithContext

func (c *Client) DeleteTeamMemberWithContext(ctx context.Context, request *DeleteTeamMemberRequest) (response *DeleteTeamMemberResponse, err error)

DeleteTeamMember This API is used to delete a team member

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
RESOURCENOTFOUND = "ResourceNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) DeleteTeamWithContext

func (c *Client) DeleteTeamWithContext(ctx context.Context, request *DeleteTeamRequest) (response *DeleteTeamResponse, err error)

DeleteTeam This API is used to delete a team

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
OPERATIONDENIED = "OperationDenied"
REQUESTLIMITEXCEEDED = "RequestLimitExceeded"
RESOURCENOTFOUND = "ResourceNotFound"

func (*Client) DeleteUser

func (c *Client) DeleteUser(request *DeleteUserRequest) (response *DeleteUserResponse, err error)

DeleteUser This API is used to delete a user

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DeleteUserWithContext

func (c *Client) DeleteUserWithContext(ctx context.Context, request *DeleteUserRequest) (response *DeleteUserResponse, err error)

DeleteUser This API is used to delete a user

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DescribeApplication

func (c *Client) DescribeApplication(request *DescribeApplicationRequest) (response *DescribeApplicationResponse, err error)

DescribeApplication This API is used to query application details

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"

func (*Client) DescribeApplicationConfig

func (c *Client) DescribeApplicationConfig(request *DescribeApplicationConfigRequest) (response *DescribeApplicationConfigResponse, err error)

DescribeApplicationConfig This API is used to query application configuration information

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
OPERATIONDENIED = "OperationDenied"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) DescribeApplicationConfigWithContext

func (c *Client) DescribeApplicationConfigWithContext(ctx context.Context, request *DescribeApplicationConfigRequest) (response *DescribeApplicationConfigResponse, err error)

DescribeApplicationConfig This API is used to query application configuration information

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
OPERATIONDENIED = "OperationDenied"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) DescribeApplicationList

func (c *Client) DescribeApplicationList(request *DescribeApplicationListRequest) (response *DescribeApplicationListResponse, err error)

DescribeApplicationList This API is used to query application list data

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) DescribeApplicationListWithContext

func (c *Client) DescribeApplicationListWithContext(ctx context.Context, request *DescribeApplicationListRequest) (response *DescribeApplicationListResponse, err error)

DescribeApplicationList This API is used to query application list data

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) DescribeApplicationMNPVersionAuditList

func (c *Client) DescribeApplicationMNPVersionAuditList(request *DescribeApplicationMNPVersionAuditListRequest) (response *DescribeApplicationMNPVersionAuditListResponse, err error)

DescribeApplicationMNPVersionAuditList This API is used to query the approval list of the mini program versions

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DescribeApplicationMNPVersionAuditListWithContext

func (c *Client) DescribeApplicationMNPVersionAuditListWithContext(ctx context.Context, request *DescribeApplicationMNPVersionAuditListRequest) (response *DescribeApplicationMNPVersionAuditListResponse, err error)

DescribeApplicationMNPVersionAuditList This API is used to query the approval list of the mini program versions

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DescribeApplicationWithContext

func (c *Client) DescribeApplicationWithContext(ctx context.Context, request *DescribeApplicationRequest) (response *DescribeApplicationResponse, err error)

DescribeApplication This API is used to query application details

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"

func (*Client) DescribeConsoleMNPVersionCompileTask

func (c *Client) DescribeConsoleMNPVersionCompileTask(request *DescribeConsoleMNPVersionCompileTaskRequest) (response *DescribeConsoleMNPVersionCompileTaskResponse, err error)

DescribeConsoleMNPVersionCompileTask This API is used to query if the mini program version is uploaded successfully

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DescribeConsoleMNPVersionCompileTaskWithContext

func (c *Client) DescribeConsoleMNPVersionCompileTaskWithContext(ctx context.Context, request *DescribeConsoleMNPVersionCompileTaskRequest) (response *DescribeConsoleMNPVersionCompileTaskResponse, err error)

DescribeConsoleMNPVersionCompileTask This API is used to query if the mini program version is uploaded successfully

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DescribeDomainInfo

func (c *Client) DescribeDomainInfo(request *DescribeDomainInfoRequest) (response *DescribeDomainInfoResponse, err error)

DescribeDomainInfo This API is used to query the domain name list configured for the mini program

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DescribeDomainInfoWithContext

func (c *Client) DescribeDomainInfoWithContext(ctx context.Context, request *DescribeDomainInfoRequest) (response *DescribeDomainInfoResponse, err error)

DescribeDomainInfo This API is used to query the domain name list configured for the mini program

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DescribeDomainTeamList

func (c *Client) DescribeDomainTeamList(request *DescribeDomainTeamListRequest) (response *DescribeDomainTeamListResponse, err error)

DescribeDomainTeamList This API is used to query the list of teams with domains that obtained the ICP filing

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_GETOPERATERESOURCEFAILED = "FailedOperation.GetOperateResourceFailed"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_USERTEAMRELATIONNOTEXIST = "InvalidParameterValue.UserTeamRelationNotExist"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
OPERATIONDENIED = "OperationDenied"
RESOURCEINUSE = "ResourceInUse"
RESOURCENOTFOUND = "ResourceNotFound"
RESOURCEUNAVAILABLE = "ResourceUnavailable"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) DescribeDomainTeamListWithContext

func (c *Client) DescribeDomainTeamListWithContext(ctx context.Context, request *DescribeDomainTeamListRequest) (response *DescribeDomainTeamListResponse, err error)

DescribeDomainTeamList This API is used to query the list of teams with domains that obtained the ICP filing

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_GETOPERATERESOURCEFAILED = "FailedOperation.GetOperateResourceFailed"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_USERTEAMRELATIONNOTEXIST = "InvalidParameterValue.UserTeamRelationNotExist"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
OPERATIONDENIED = "OperationDenied"
RESOURCEINUSE = "ResourceInUse"
RESOURCENOTFOUND = "ResourceNotFound"
RESOURCEUNAVAILABLE = "ResourceUnavailable"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) DescribeGlobalDomainList

func (c *Client) DescribeGlobalDomainList(request *DescribeGlobalDomainListRequest) (response *DescribeGlobalDomainListResponse, err error)

DescribeGlobalDomainList This API is used to query domain allowlist and blocklist

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_USERTEAMRELATIONNOTEXIST = "InvalidParameterValue.UserTeamRelationNotExist"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
OPERATIONDENIED = "OperationDenied"
RESOURCEINUSE = "ResourceInUse"
RESOURCEINSUFFICIENT = "ResourceInsufficient"
RESOURCENOTFOUND = "ResourceNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) DescribeGlobalDomainListWithContext

func (c *Client) DescribeGlobalDomainListWithContext(ctx context.Context, request *DescribeGlobalDomainListRequest) (response *DescribeGlobalDomainListResponse, err error)

DescribeGlobalDomainList This API is used to query domain allowlist and blocklist

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_USERTEAMRELATIONNOTEXIST = "InvalidParameterValue.UserTeamRelationNotExist"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
OPERATIONDENIED = "OperationDenied"
RESOURCEINUSE = "ResourceInUse"
RESOURCEINSUFFICIENT = "ResourceInsufficient"
RESOURCENOTFOUND = "ResourceNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) DescribeMNPBoard

func (c *Client) DescribeMNPBoard(request *DescribeMNPBoardRequest) (response *DescribeMNPBoardResponse, err error)

DescribeMNPBoard This API is used to query the mini program version management information

error code that may be returned:

FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"

func (*Client) DescribeMNPBoardWithContext

func (c *Client) DescribeMNPBoardWithContext(ctx context.Context, request *DescribeMNPBoardRequest) (response *DescribeMNPBoardResponse, err error)

DescribeMNPBoard This API is used to query the mini program version management information

error code that may be returned:

FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"

func (*Client) DescribeMNPDetail

func (c *Client) DescribeMNPDetail(request *DescribeMNPDetailRequest) (response *DescribeMNPDetailResponse, err error)

DescribeMNPDetail This API is used to query mini program details

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
RESOURCENOTFOUND = "ResourceNotFound"

func (*Client) DescribeMNPDetailWithContext

func (c *Client) DescribeMNPDetailWithContext(ctx context.Context, request *DescribeMNPDetailRequest) (response *DescribeMNPDetailResponse, err error)

DescribeMNPDetail This API is used to query mini program details

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
RESOURCENOTFOUND = "ResourceNotFound"

func (*Client) DescribeMNPManagerDetail

func (c *Client) DescribeMNPManagerDetail(request *DescribeMNPManagerDetailRequest) (response *DescribeMNPManagerDetailResponse, err error)

DescribeMNPManagerDetail This API is used to query mini program details in the mini program list

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
RESOURCENOTFOUND = "ResourceNotFound"

func (*Client) DescribeMNPManagerDetailWithContext

func (c *Client) DescribeMNPManagerDetailWithContext(ctx context.Context, request *DescribeMNPManagerDetailRequest) (response *DescribeMNPManagerDetailResponse, err error)

DescribeMNPManagerDetail This API is used to query mini program details in the mini program list

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
RESOURCENOTFOUND = "ResourceNotFound"

func (*Client) DescribeMNPManagerList

func (c *Client) DescribeMNPManagerList(request *DescribeMNPManagerListRequest) (response *DescribeMNPManagerListResponse, err error)

DescribeMNPManagerList This API is used to query the mini program list

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"

func (*Client) DescribeMNPManagerListWithContext

func (c *Client) DescribeMNPManagerListWithContext(ctx context.Context, request *DescribeMNPManagerListRequest) (response *DescribeMNPManagerListResponse, err error)

DescribeMNPManagerList This API is used to query the mini program list

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"

func (*Client) DescribeMNPPrivacy

func (c *Client) DescribeMNPPrivacy(request *DescribeMNPPrivacyRequest) (response *DescribeMNPPrivacyResponse, err error)

DescribeMNPPrivacy This API is used to query the details filled in the service description

error code that may be returned:

FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"

func (*Client) DescribeMNPPrivacyWithContext

func (c *Client) DescribeMNPPrivacyWithContext(ctx context.Context, request *DescribeMNPPrivacyRequest) (response *DescribeMNPPrivacyResponse, err error)

DescribeMNPPrivacy This API is used to query the details filled in the service description

error code that may be returned:

FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"

func (*Client) DescribeMNPType

func (c *Client) DescribeMNPType(request *DescribeMNPTypeRequest) (response *DescribeMNPTypeResponse, err error)

DescribeMNPType This API is used to query the mini program type list

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"

func (*Client) DescribeMNPTypeWithContext

func (c *Client) DescribeMNPTypeWithContext(ctx context.Context, request *DescribeMNPTypeRequest) (response *DescribeMNPTypeResponse, err error)

DescribeMNPType This API is used to query the mini program type list

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"

func (*Client) DescribeMNPVersionPreview

func (c *Client) DescribeMNPVersionPreview(request *DescribeMNPVersionPreviewRequest) (response *DescribeMNPVersionPreviewResponse, err error)

DescribeMNPVersionPreview This API is used to query the details of the mini program trial version

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"

func (*Client) DescribeMNPVersionPreviewWithContext

func (c *Client) DescribeMNPVersionPreviewWithContext(ctx context.Context, request *DescribeMNPVersionPreviewRequest) (response *DescribeMNPVersionPreviewResponse, err error)

DescribeMNPVersionPreview This API is used to query the details of the mini program trial version

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"

func (*Client) DescribeOfflineMNPPackage

func (c *Client) DescribeOfflineMNPPackage(request *DescribeOfflineMNPPackageRequest) (response *DescribeOfflineMNPPackageResponse, err error)

DescribeOfflineMNPPackage This API is used to query offline mini program packages

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_GETOPERATERESOURCEFAILED = "FailedOperation.GetOperateResourceFailed"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_OPERATIONSTEAMNOAPPLICATIONPERMISSION = "FailedOperation.OperationsTeamNoApplicationPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_TEAMTYPEMISMATCH = "InvalidParameterValue.TeamTypeMismatch"
MISSINGPARAMETER = "MissingParameter"

func (*Client) DescribeOfflineMNPPackageWithContext

func (c *Client) DescribeOfflineMNPPackageWithContext(ctx context.Context, request *DescribeOfflineMNPPackageRequest) (response *DescribeOfflineMNPPackageResponse, err error)

DescribeOfflineMNPPackage This API is used to query offline mini program packages

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_GETOPERATERESOURCEFAILED = "FailedOperation.GetOperateResourceFailed"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_OPERATIONSTEAMNOAPPLICATIONPERMISSION = "FailedOperation.OperationsTeamNoApplicationPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_TEAMTYPEMISMATCH = "InvalidParameterValue.TeamTypeMismatch"
MISSINGPARAMETER = "MissingParameter"

func (*Client) DescribeOnlineVersion

func (c *Client) DescribeOnlineVersion(request *DescribeOnlineVersionRequest) (response *DescribeOnlineVersionResponse, err error)

DescribeOnlineVersion This API is used to query the current release version of the mini program

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DescribeOnlineVersionWithContext

func (c *Client) DescribeOnlineVersionWithContext(ctx context.Context, request *DescribeOnlineVersionRequest) (response *DescribeOnlineVersionResponse, err error)

DescribeOnlineVersion This API is used to query the current release version of the mini program

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DescribeRoleDetail

func (c *Client) DescribeRoleDetail(request *DescribeRoleDetailRequest) (response *DescribeRoleDetailResponse, err error)

DescribeRoleDetail This API is used to query role permission information

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DescribeRoleDetailWithContext

func (c *Client) DescribeRoleDetailWithContext(ctx context.Context, request *DescribeRoleDetailRequest) (response *DescribeRoleDetailResponse, err error)

DescribeRoleDetail This API is used to query role permission information

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DescribeRoleList

func (c *Client) DescribeRoleList(request *DescribeRoleListRequest) (response *DescribeRoleListResponse, err error)

DescribeRoleList This API is used to query role list data

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DescribeRoleListWithContext

func (c *Client) DescribeRoleListWithContext(ctx context.Context, request *DescribeRoleListRequest) (response *DescribeRoleListResponse, err error)

DescribeRoleList This API is used to query role list data

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DescribeSensitiveAPIAuditList

func (c *Client) DescribeSensitiveAPIAuditList(request *DescribeSensitiveAPIAuditListRequest) (response *DescribeSensitiveAPIAuditListResponse, err error)

DescribeSensitiveAPIAuditList This API is used to query sensitive API approval list

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
RESOURCENOTFOUND = "ResourceNotFound"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) DescribeSensitiveAPIAuditListWithContext

func (c *Client) DescribeSensitiveAPIAuditListWithContext(ctx context.Context, request *DescribeSensitiveAPIAuditListRequest) (response *DescribeSensitiveAPIAuditListResponse, err error)

DescribeSensitiveAPIAuditList This API is used to query sensitive API approval list

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
RESOURCENOTFOUND = "ResourceNotFound"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) DescribeSensitiveAPIList

func (c *Client) DescribeSensitiveAPIList(request *DescribeSensitiveAPIListRequest) (response *DescribeSensitiveAPIListResponse, err error)

DescribeSensitiveAPIList This API is used to query all sensitive APIs list

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) DescribeSensitiveAPIListWithContext

func (c *Client) DescribeSensitiveAPIListWithContext(ctx context.Context, request *DescribeSensitiveAPIListRequest) (response *DescribeSensitiveAPIListResponse, err error)

DescribeSensitiveAPIList This API is used to query all sensitive APIs list

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) DescribeSensitiveApiApplyDetail

func (c *Client) DescribeSensitiveApiApplyDetail(request *DescribeSensitiveApiApplyDetailRequest) (response *DescribeSensitiveApiApplyDetailResponse, err error)

DescribeSensitiveApiApplyDetail This API is used to query sensitive API call details

error code that may be returned:

FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DescribeSensitiveApiApplyDetailWithContext

func (c *Client) DescribeSensitiveApiApplyDetailWithContext(ctx context.Context, request *DescribeSensitiveApiApplyDetailRequest) (response *DescribeSensitiveApiApplyDetailResponse, err error)

DescribeSensitiveApiApplyDetail This API is used to query sensitive API call details

error code that may be returned:

FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DescribeSensitiveApiAuthList

func (c *Client) DescribeSensitiveApiAuthList(request *DescribeSensitiveApiAuthListRequest) (response *DescribeSensitiveApiAuthListResponse, err error)

DescribeSensitiveApiAuthList This API is used to query the sensitive APIs that require permission

error code that may be returned:

FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DescribeSensitiveApiAuthListWithContext

func (c *Client) DescribeSensitiveApiAuthListWithContext(ctx context.Context, request *DescribeSensitiveApiAuthListRequest) (response *DescribeSensitiveApiAuthListResponse, err error)

DescribeSensitiveApiAuthList This API is used to query the sensitive APIs that require permission

error code that may be returned:

FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DescribeSimpleApplicationInfoList

func (c *Client) DescribeSimpleApplicationInfoList(request *DescribeSimpleApplicationInfoListRequest) (response *DescribeSimpleApplicationInfoListResponse, err error)

DescribeSimpleApplicationInfoList This API is used to query application list information

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_INVALIDTEAMID = "InvalidParameterValue.InvalidTeamId"
INVALIDPARAMETERVALUE_USERTEAMRELATIONNOTEXIST = "InvalidParameterValue.UserTeamRelationNotExist"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) DescribeSimpleApplicationInfoListWithContext

func (c *Client) DescribeSimpleApplicationInfoListWithContext(ctx context.Context, request *DescribeSimpleApplicationInfoListRequest) (response *DescribeSimpleApplicationInfoListResponse, err error)

DescribeSimpleApplicationInfoList This API is used to query application list information

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_INVALIDTEAMID = "InvalidParameterValue.InvalidTeamId"
INVALIDPARAMETERVALUE_USERTEAMRELATIONNOTEXIST = "InvalidParameterValue.UserTeamRelationNotExist"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) DescribeSimpleTeamList

func (c *Client) DescribeSimpleTeamList(request *DescribeSimpleTeamListRequest) (response *DescribeSimpleTeamListResponse, err error)

DescribeSimpleTeamList This API is used to query the team information list

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
OPERATIONDENIED = "OperationDenied"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) DescribeSimpleTeamListWithContext

func (c *Client) DescribeSimpleTeamListWithContext(ctx context.Context, request *DescribeSimpleTeamListRequest) (response *DescribeSimpleTeamListResponse, err error)

DescribeSimpleTeamList This API is used to query the team information list

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
OPERATIONDENIED = "OperationDenied"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) DescribeTeam

func (c *Client) DescribeTeam(request *DescribeTeamRequest) (response *DescribeTeamResponse, err error)

DescribeTeam This API is used to query team details

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) DescribeTeamDomainList

func (c *Client) DescribeTeamDomainList(request *DescribeTeamDomainListRequest) (response *DescribeTeamDomainListResponse, err error)

DescribeTeamDomainList This API is used to query a specified team’s domains that obtained ICP filing

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_USERTEAMRELATIONNOTEXIST = "InvalidParameterValue.UserTeamRelationNotExist"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
RESOURCEINSUFFICIENT = "ResourceInsufficient"
RESOURCENOTFOUND = "ResourceNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) DescribeTeamDomainListWithContext

func (c *Client) DescribeTeamDomainListWithContext(ctx context.Context, request *DescribeTeamDomainListRequest) (response *DescribeTeamDomainListResponse, err error)

DescribeTeamDomainList This API is used to query a specified team’s domains that obtained ICP filing

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_USERTEAMRELATIONNOTEXIST = "InvalidParameterValue.UserTeamRelationNotExist"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
RESOURCEINSUFFICIENT = "ResourceInsufficient"
RESOURCENOTFOUND = "ResourceNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) DescribeTeamList

func (c *Client) DescribeTeamList(request *DescribeTeamListRequest) (response *DescribeTeamListResponse, err error)

DescribeTeamList This API is used to query the team list that can be viewed by the current role permissions

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) DescribeTeamListWithContext

func (c *Client) DescribeTeamListWithContext(ctx context.Context, request *DescribeTeamListRequest) (response *DescribeTeamListResponse, err error)

DescribeTeamList This API is used to query the team list that can be viewed by the current role permissions

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) DescribeTeamMemberList

func (c *Client) DescribeTeamMemberList(request *DescribeTeamMemberListRequest) (response *DescribeTeamMemberListResponse, err error)

DescribeTeamMemberList This API is used to query team member list

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) DescribeTeamMemberListWithContext

func (c *Client) DescribeTeamMemberListWithContext(ctx context.Context, request *DescribeTeamMemberListRequest) (response *DescribeTeamMemberListResponse, err error)

DescribeTeamMemberList This API is used to query team member list

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) DescribeTeamMembers

func (c *Client) DescribeTeamMembers(request *DescribeTeamMembersRequest) (response *DescribeTeamMembersResponse, err error)

DescribeTeamMembers This API is used to query the member list of a specified team

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) DescribeTeamMembersWithContext

func (c *Client) DescribeTeamMembersWithContext(ctx context.Context, request *DescribeTeamMembersRequest) (response *DescribeTeamMembersResponse, err error)

DescribeTeamMembers This API is used to query the member list of a specified team

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) DescribeTeamWithContext

func (c *Client) DescribeTeamWithContext(ctx context.Context, request *DescribeTeamRequest) (response *DescribeTeamResponse, err error)

DescribeTeam This API is used to query team details

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) DescribeTempSecret4UploadFile2Cos

func (c *Client) DescribeTempSecret4UploadFile2Cos(request *DescribeTempSecret4UploadFile2CosRequest) (response *DescribeTempSecret4UploadFile2CosResponse, err error)

DescribeTempSecret4UploadFile2Cos This API is used to obtain a temporary key for file uploads

error code that may be returned:

FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_INVALIDTEAMID = "InvalidParameterValue.InvalidTeamId"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DescribeTempSecret4UploadFile2CosWithContext

func (c *Client) DescribeTempSecret4UploadFile2CosWithContext(ctx context.Context, request *DescribeTempSecret4UploadFile2CosRequest) (response *DescribeTempSecret4UploadFile2CosResponse, err error)

DescribeTempSecret4UploadFile2Cos This API is used to obtain a temporary key for file uploads

error code that may be returned:

FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_INVALIDTEAMID = "InvalidParameterValue.InvalidTeamId"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DescribeUserDetail

func (c *Client) DescribeUserDetail(request *DescribeUserDetailRequest) (response *DescribeUserDetailResponse, err error)

DescribeUserDetail This API is used to query user details

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DescribeUserDetailWithContext

func (c *Client) DescribeUserDetailWithContext(ctx context.Context, request *DescribeUserDetailRequest) (response *DescribeUserDetailResponse, err error)

DescribeUserDetail This API is used to query user details

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DescribeUserList

func (c *Client) DescribeUserList(request *DescribeUserListRequest) (response *DescribeUserListResponse, err error)

DescribeUserList This API is used to query the user list

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DescribeUserListWithContext

func (c *Client) DescribeUserListWithContext(ctx context.Context, request *DescribeUserListRequest) (response *DescribeUserListResponse, err error)

DescribeUserList This API is used to query the user list

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) DisableTeamDomain

func (c *Client) DisableTeamDomain(request *DisableTeamDomainRequest) (response *DisableTeamDomainResponse, err error)

DisableTeamDomain This API is used to disable the company’s domain name that obtained the ICP filing

error code that may be returned:

FAILEDOPERATION_EXISTBLACKDOMAIN = "FailedOperation.ExistBlackDomain"
FAILEDOPERATION_EXISTWHITEDOMAIN = "FailedOperation.ExistWhiteDomain"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) DisableTeamDomainWithContext

func (c *Client) DisableTeamDomainWithContext(ctx context.Context, request *DisableTeamDomainRequest) (response *DisableTeamDomainResponse, err error)

DisableTeamDomain This API is used to disable the company’s domain name that obtained the ICP filing

error code that may be returned:

FAILEDOPERATION_EXISTBLACKDOMAIN = "FailedOperation.ExistBlackDomain"
FAILEDOPERATION_EXISTWHITEDOMAIN = "FailedOperation.ExistWhiteDomain"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) ModifyApplication

func (c *Client) ModifyApplication(request *ModifyApplicationRequest) (response *ModifyApplicationResponse, err error)

ModifyApplication This API is used to change application information

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_APPNAMEALREADYEXIST = "InvalidParameterValue.AppNameAlreadyExist"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) ModifyApplicationAppKey

func (c *Client) ModifyApplicationAppKey(request *ModifyApplicationAppKeyRequest) (response *ModifyApplicationAppKeyResponse, err error)

ModifyApplicationAppKey This API is used to modify the application package name

error code that may be returned:

FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
RESOURCENOTFOUND = "ResourceNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) ModifyApplicationAppKeyWithContext

func (c *Client) ModifyApplicationAppKeyWithContext(ctx context.Context, request *ModifyApplicationAppKeyRequest) (response *ModifyApplicationAppKeyResponse, err error)

ModifyApplicationAppKey This API is used to modify the application package name

error code that may be returned:

FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
RESOURCENOTFOUND = "ResourceNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) ModifyApplicationAppUrl

func (c *Client) ModifyApplicationAppUrl(request *ModifyApplicationAppUrlRequest) (response *ModifyApplicationAppUrlResponse, err error)

ModifyApplicationAppUrl This API is used to change the app download address

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
OPERATIONDENIED = "OperationDenied"
RESOURCENOTFOUND = "ResourceNotFound"
RESOURCEUNAVAILABLE = "ResourceUnavailable"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) ModifyApplicationAppUrlWithContext

func (c *Client) ModifyApplicationAppUrlWithContext(ctx context.Context, request *ModifyApplicationAppUrlRequest) (response *ModifyApplicationAppUrlResponse, err error)

ModifyApplicationAppUrl This API is used to change the app download address

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
OPERATIONDENIED = "OperationDenied"
RESOURCENOTFOUND = "ResourceNotFound"
RESOURCEUNAVAILABLE = "ResourceUnavailable"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) ModifyApplicationWithContext

func (c *Client) ModifyApplicationWithContext(ctx context.Context, request *ModifyApplicationRequest) (response *ModifyApplicationResponse, err error)

ModifyApplication This API is used to change application information

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_APPNAMEALREADYEXIST = "InvalidParameterValue.AppNameAlreadyExist"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) ModifyDomain

func (c *Client) ModifyDomain(request *ModifyDomainRequest) (response *ModifyDomainResponse, err error)

ModifyDomain This API is used to edit the mini program domain information

error code that may be returned:

FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) ModifyDomainWithContext

func (c *Client) ModifyDomainWithContext(ctx context.Context, request *ModifyDomainRequest) (response *ModifyDomainResponse, err error)

ModifyDomain This API is used to edit the mini program domain information

error code that may be returned:

FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) ModifyGlobalDomain

func (c *Client) ModifyGlobalDomain(request *ModifyGlobalDomainRequest) (response *ModifyGlobalDomainResponse, err error)

ModifyGlobalDomain This API is used to modify domain allowlist or blocklist

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_GETOPERATERESOURCEFAILED = "FailedOperation.GetOperateResourceFailed"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_USERTEAMRELATIONNOTEXIST = "InvalidParameterValue.UserTeamRelationNotExist"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) ModifyGlobalDomainWithContext

func (c *Client) ModifyGlobalDomainWithContext(ctx context.Context, request *ModifyGlobalDomainRequest) (response *ModifyGlobalDomainResponse, err error)

ModifyGlobalDomain This API is used to modify domain allowlist or blocklist

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_GETOPERATERESOURCEFAILED = "FailedOperation.GetOperateResourceFailed"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_USERTEAMRELATIONNOTEXIST = "InvalidParameterValue.UserTeamRelationNotExist"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) ModifyMNP

func (c *Client) ModifyMNP(request *ModifyMNPRequest) (response *ModifyMNPResponse, err error)

ModifyMNP This API is used to modify mini program information

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_MINIPROGRAMNAMEALREADYEXIST = "InvalidParameterValue.MiniProgramNameAlreadyExist"
MISSINGPARAMETER = "MissingParameter"

func (*Client) ModifyMNPStatusOffline

func (c *Client) ModifyMNPStatusOffline(request *ModifyMNPStatusOfflineRequest) (response *ModifyMNPStatusOfflineResponse, err error)

ModifyMNPStatusOffline This API is used to remove the mini program

error code that may be returned:

AUTHFAILURE = "AuthFailure"
DRYRUNOPERATION = "DryRunOperation"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_USERTEAMRELATIONNOTEXIST = "InvalidParameterValue.UserTeamRelationNotExist"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
OPERATIONDENIED = "OperationDenied"
REQUESTLIMITEXCEEDED = "RequestLimitExceeded"
RESOURCEINUSE = "ResourceInUse"
RESOURCEINSUFFICIENT = "ResourceInsufficient"
RESOURCENOTFOUND = "ResourceNotFound"
RESOURCEUNAVAILABLE = "ResourceUnavailable"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) ModifyMNPStatusOfflineWithContext

func (c *Client) ModifyMNPStatusOfflineWithContext(ctx context.Context, request *ModifyMNPStatusOfflineRequest) (response *ModifyMNPStatusOfflineResponse, err error)

ModifyMNPStatusOffline This API is used to remove the mini program

error code that may be returned:

AUTHFAILURE = "AuthFailure"
DRYRUNOPERATION = "DryRunOperation"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_USERTEAMRELATIONNOTEXIST = "InvalidParameterValue.UserTeamRelationNotExist"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
OPERATIONDENIED = "OperationDenied"
REQUESTLIMITEXCEEDED = "RequestLimitExceeded"
RESOURCEINUSE = "ResourceInUse"
RESOURCEINSUFFICIENT = "ResourceInsufficient"
RESOURCENOTFOUND = "ResourceNotFound"
RESOURCEUNAVAILABLE = "ResourceUnavailable"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) ModifyMNPVersionPreview

func (c *Client) ModifyMNPVersionPreview(request *ModifyMNPVersionPreviewRequest) (response *ModifyMNPVersionPreviewResponse, err error)

ModifyMNPVersionPreview This API is used to configure the mini program trial version

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SHOWCASEVERSIONALREADYEXIST = "FailedOperation.ShowcaseVersionAlreadyExist"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"

func (*Client) ModifyMNPVersionPreviewWithContext

func (c *Client) ModifyMNPVersionPreviewWithContext(ctx context.Context, request *ModifyMNPVersionPreviewRequest) (response *ModifyMNPVersionPreviewResponse, err error)

ModifyMNPVersionPreview This API is used to configure the mini program trial version

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SHOWCASEVERSIONALREADYEXIST = "FailedOperation.ShowcaseVersionAlreadyExist"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"

func (*Client) ModifyMNPWithContext

func (c *Client) ModifyMNPWithContext(ctx context.Context, request *ModifyMNPRequest) (response *ModifyMNPResponse, err error)

ModifyMNP This API is used to modify mini program information

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_MINIPROGRAMNAMEALREADYEXIST = "InvalidParameterValue.MiniProgramNameAlreadyExist"
MISSINGPARAMETER = "MissingParameter"

func (*Client) ModifyOnlineVersion

func (c *Client) ModifyOnlineVersion(request *ModifyOnlineVersionRequest) (response *ModifyOnlineVersionResponse, err error)

ModifyOnlineVersion This API is used to rollback a mini program release version

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_INVALIDMINIAPPID = "InvalidParameterValue.InvalidMiniAppId"
INVALIDPARAMETERVALUE_INVALIDUSERID = "InvalidParameterValue.InvalidUserId"
INVALIDPARAMETERVALUE_USERTEAMRELATIONNOTEXIST = "InvalidParameterValue.UserTeamRelationNotExist"
MISSINGPARAMETER = "MissingParameter"
OPERATIONDENIED = "OperationDenied"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) ModifyOnlineVersionWithContext

func (c *Client) ModifyOnlineVersionWithContext(ctx context.Context, request *ModifyOnlineVersionRequest) (response *ModifyOnlineVersionResponse, err error)

ModifyOnlineVersion This API is used to rollback a mini program release version

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_INVALIDMINIAPPID = "InvalidParameterValue.InvalidMiniAppId"
INVALIDPARAMETERVALUE_INVALIDUSERID = "InvalidParameterValue.InvalidUserId"
INVALIDPARAMETERVALUE_USERTEAMRELATIONNOTEXIST = "InvalidParameterValue.UserTeamRelationNotExist"
MISSINGPARAMETER = "MissingParameter"
OPERATIONDENIED = "OperationDenied"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) ModifyPlatformAuditStatus

func (c *Client) ModifyPlatformAuditStatus(request *ModifyPlatformAuditStatusRequest) (response *ModifyPlatformAuditStatusResponse, err error)

ModifyPlatformAuditStatus This API is used to approve the release of the mini program version

error code that may be returned:

FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"

func (*Client) ModifyPlatformAuditStatusWithContext

func (c *Client) ModifyPlatformAuditStatusWithContext(ctx context.Context, request *ModifyPlatformAuditStatusRequest) (response *ModifyPlatformAuditStatusResponse, err error)

ModifyPlatformAuditStatus This API is used to approve the release of the mini program version

error code that may be returned:

FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"

func (*Client) ModifySensitiveAPIAuditStatus

func (c *Client) ModifySensitiveAPIAuditStatus(request *ModifySensitiveAPIAuditStatusRequest) (response *ModifySensitiveAPIAuditStatusResponse, err error)

ModifySensitiveAPIAuditStatus This API is used to approve sensitive API call permission

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
RESOURCENOTFOUND = "ResourceNotFound"
RESOURCEUNAVAILABLE = "ResourceUnavailable"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) ModifySensitiveAPIAuditStatusWithContext

func (c *Client) ModifySensitiveAPIAuditStatusWithContext(ctx context.Context, request *ModifySensitiveAPIAuditStatusRequest) (response *ModifySensitiveAPIAuditStatusResponse, err error)

ModifySensitiveAPIAuditStatus This API is used to approve sensitive API call permission

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
RESOURCENOTFOUND = "ResourceNotFound"
RESOURCEUNAVAILABLE = "ResourceUnavailable"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) ModifyTeam

func (c *Client) ModifyTeam(request *ModifyTeamRequest) (response *ModifyTeamResponse, err error)

ModifyTeam This API is used to change team information

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) ModifyTeamMember

func (c *Client) ModifyTeamMember(request *ModifyTeamMemberRequest) (response *ModifyTeamMemberResponse, err error)

ModifyTeamMember This API is used to change team member roles

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_INVALIDUSERID = "InvalidParameterValue.InvalidUserId"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) ModifyTeamMemberWithContext

func (c *Client) ModifyTeamMemberWithContext(ctx context.Context, request *ModifyTeamMemberRequest) (response *ModifyTeamMemberResponse, err error)

ModifyTeamMember This API is used to change team member roles

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETER = "InvalidParameter"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
INVALIDPARAMETERVALUE_INVALIDUSERID = "InvalidParameterValue.InvalidUserId"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNAUTHORIZEDOPERATION = "UnauthorizedOperation"
UNKNOWNPARAMETER = "UnknownParameter"
UNSUPPORTEDOPERATION = "UnsupportedOperation"

func (*Client) ModifyTeamWithContext

func (c *Client) ModifyTeamWithContext(ctx context.Context, request *ModifyTeamRequest) (response *ModifyTeamResponse, err error)

ModifyTeam This API is used to change team information

error code that may be returned:

FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_INVALIDREQUESTENTERPRISEINFO = "FailedOperation.InvalidRequestEnterpriseInfo"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_NOACCESSPERMISSION = "FailedOperation.NoAccessPermission"
FAILEDOPERATION_RECORDNOTFOUND = "FailedOperation.RecordNotFound"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
FAILEDOPERATION_SYSTEMERROR = "FailedOperation.SystemError"
INTERNALERROR = "InternalError"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
MISSINGPARAMETER = "MissingParameter"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"
UNKNOWNPARAMETER = "UnknownParameter"

func (*Client) ModifyUser

func (c *Client) ModifyUser(request *ModifyUserRequest) (response *ModifyUserResponse, err error)

ModifyUser This API is used to edit user information

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) ModifyUserPassword

func (c *Client) ModifyUserPassword(request *ModifyUserPasswordRequest) (response *ModifyUserPasswordResponse, err error)

ModifyUserPassword This API is used to reset user password

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) ModifyUserPasswordWithContext

func (c *Client) ModifyUserPasswordWithContext(ctx context.Context, request *ModifyUserPasswordRequest) (response *ModifyUserPasswordResponse, err error)

ModifyUserPassword This API is used to reset user password

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

func (*Client) ModifyUserWithContext

func (c *Client) ModifyUserWithContext(ctx context.Context, request *ModifyUserRequest) (response *ModifyUserResponse, err error)

ModifyUser This API is used to edit user information

error code that may be returned:

AUTHFAILURE = "AuthFailure"
FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_LOGINAUTHFAILED = "FailedOperation.LoginAuthFailed"
FAILEDOPERATION_REQUESTPARAMANALYSISFAILED = "FailedOperation.RequestParamAnalysisFailed"
MISSINGPARAMETER_LOGININFONOTFOUND = "MissingParameter.LoginInfoNotFound"

type CreateApplicationRequest

type CreateApplicationRequest struct {
	*tchttp.BaseRequest

	// Application name
	ApplicationName *string `json:"ApplicationName,omitnil,omitempty" name:"ApplicationName"`

	Logo *string `json:"Logo,omitnil,omitempty" name:"Logo"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Android package name
	AndroidAppKey *string `json:"AndroidAppKey,omitnil,omitempty" name:"AndroidAppKey"`

	// iOS bundleId
	IosAppKey *string `json:"IosAppKey,omitnil,omitempty" name:"IosAppKey"`

	// Introduction
	Intro *string `json:"Intro,omitnil,omitempty" name:"Intro"`

	// Remarks
	Remark *string `json:"Remark,omitnil,omitempty" name:"Remark"`

	// Android App download address
	AndroidAppURL *string `json:"AndroidAppURL,omitnil,omitempty" name:"AndroidAppURL"`

	// iOS App download address
	IosAppURL *string `json:"IosAppURL,omitnil,omitempty" name:"IosAppURL"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Application type. 1: Test; 2: Formal
	ApplicationType *int64 `json:"ApplicationType,omitnil,omitempty" name:"ApplicationType"`
}

func NewCreateApplicationRequest

func NewCreateApplicationRequest() (request *CreateApplicationRequest)

func (*CreateApplicationRequest) FromJsonString

func (r *CreateApplicationRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreateApplicationRequest) ToJsonString

func (r *CreateApplicationRequest) ToJsonString() string

type CreateApplicationRequestParams

type CreateApplicationRequestParams struct {
	// Application name
	ApplicationName *string `json:"ApplicationName,omitnil,omitempty" name:"ApplicationName"`

	Logo *string `json:"Logo,omitnil,omitempty" name:"Logo"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Android package name
	AndroidAppKey *string `json:"AndroidAppKey,omitnil,omitempty" name:"AndroidAppKey"`

	// iOS bundleId
	IosAppKey *string `json:"IosAppKey,omitnil,omitempty" name:"IosAppKey"`

	// Introduction
	Intro *string `json:"Intro,omitnil,omitempty" name:"Intro"`

	// Remarks
	Remark *string `json:"Remark,omitnil,omitempty" name:"Remark"`

	// Android App download address
	AndroidAppURL *string `json:"AndroidAppURL,omitnil,omitempty" name:"AndroidAppURL"`

	// iOS App download address
	IosAppURL *string `json:"IosAppURL,omitnil,omitempty" name:"IosAppURL"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Application type. 1: Test; 2: Formal
	ApplicationType *int64 `json:"ApplicationType,omitnil,omitempty" name:"ApplicationType"`
}

Predefined struct for user

type CreateApplicationResponse

type CreateApplicationResponse struct {
	*tchttp.BaseResponse
	Response *CreateApplicationResponseParams `json:"Response"`
}

func NewCreateApplicationResponse

func NewCreateApplicationResponse() (response *CreateApplicationResponse)

func (*CreateApplicationResponse) FromJsonString

func (r *CreateApplicationResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreateApplicationResponse) ToJsonString

func (r *CreateApplicationResponse) ToJsonString() string

type CreateApplicationResponseParams

type CreateApplicationResponseParams struct {
	// Response data
	Data *ResourceIdStringInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type CreateConsoleMNPVersionCompileTaskRequest

type CreateConsoleMNPVersionCompileTaskRequest struct {
	*tchttp.BaseRequest

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Version
	MNPVersion *string `json:"MNPVersion,omitnil,omitempty" name:"MNPVersion"`

	// External URL of the document
	FileUrl *string `json:"FileUrl,omitnil,omitempty" name:"FileUrl"`

	// Internal URL of the document
	FileInnerUrl *string `json:"FileInnerUrl,omitnil,omitempty" name:"FileInnerUrl"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Type 2 Version
	TaskType *int64 `json:"TaskType,omitnil,omitempty" name:"TaskType"`

	// Version introduction
	MNPVersionIntro *string `json:"MNPVersionIntro,omitnil,omitempty" name:"MNPVersionIntro"`

	// Version description
	MNPVersionDesc *string `json:"MNPVersionDesc,omitnil,omitempty" name:"MNPVersionDesc"`

	// Type 1 Unencrypted 2 Encrypted 3 Source
	SourceType *int64 `json:"SourceType,omitnil,omitempty" name:"SourceType"`

	// Upload platform 1- TCMPP 2 WeChat 3. TCMPP + WeChat
	ReleaseChannel *int64 `json:"ReleaseChannel,omitnil,omitempty" name:"ReleaseChannel"`
}

func NewCreateConsoleMNPVersionCompileTaskRequest

func NewCreateConsoleMNPVersionCompileTaskRequest() (request *CreateConsoleMNPVersionCompileTaskRequest)

func (*CreateConsoleMNPVersionCompileTaskRequest) FromJsonString

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreateConsoleMNPVersionCompileTaskRequest) ToJsonString

type CreateConsoleMNPVersionCompileTaskRequestParams

type CreateConsoleMNPVersionCompileTaskRequestParams struct {
	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Version
	MNPVersion *string `json:"MNPVersion,omitnil,omitempty" name:"MNPVersion"`

	// External URL of the document
	FileUrl *string `json:"FileUrl,omitnil,omitempty" name:"FileUrl"`

	// Internal URL of the document
	FileInnerUrl *string `json:"FileInnerUrl,omitnil,omitempty" name:"FileInnerUrl"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Type 2 Version
	TaskType *int64 `json:"TaskType,omitnil,omitempty" name:"TaskType"`

	// Version introduction
	MNPVersionIntro *string `json:"MNPVersionIntro,omitnil,omitempty" name:"MNPVersionIntro"`

	// Version description
	MNPVersionDesc *string `json:"MNPVersionDesc,omitnil,omitempty" name:"MNPVersionDesc"`

	// Type 1 Unencrypted 2 Encrypted 3 Source
	SourceType *int64 `json:"SourceType,omitnil,omitempty" name:"SourceType"`

	// Upload platform 1- TCMPP 2 WeChat 3. TCMPP + WeChat
	ReleaseChannel *int64 `json:"ReleaseChannel,omitnil,omitempty" name:"ReleaseChannel"`
}

Predefined struct for user

type CreateConsoleMNPVersionCompileTaskResponse

type CreateConsoleMNPVersionCompileTaskResponse struct {
	*tchttp.BaseResponse
	Response *CreateConsoleMNPVersionCompileTaskResponseParams `json:"Response"`
}

func NewCreateConsoleMNPVersionCompileTaskResponse

func NewCreateConsoleMNPVersionCompileTaskResponse() (response *CreateConsoleMNPVersionCompileTaskResponse)

func (*CreateConsoleMNPVersionCompileTaskResponse) FromJsonString

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreateConsoleMNPVersionCompileTaskResponse) ToJsonString

type CreateConsoleMNPVersionCompileTaskResponseParams

type CreateConsoleMNPVersionCompileTaskResponseParams struct {
	// Response data
	Data *CreateMNPVersionCompileTaskResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type CreateDomainParam

type CreateDomainParam struct {
	// Array of domain name URLs
	DomainUrlList []*string `json:"DomainUrlList,omitnil,omitempty" name:"DomainUrlList"`

	// Domain type. 1: requests domain; 2: WebView load domain, 3: sockets domain; 4: File upload; 5: File download
	DomainType *int64 `json:"DomainType,omitnil,omitempty" name:"DomainType"`
}

type CreateDomainRequest

type CreateDomainRequest struct {
	*tchttp.BaseRequest

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Domain name list
	Domain []*CreateDomainParam `json:"Domain,omitnil,omitempty" name:"Domain"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewCreateDomainRequest

func NewCreateDomainRequest() (request *CreateDomainRequest)

func (*CreateDomainRequest) FromJsonString

func (r *CreateDomainRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreateDomainRequest) ToJsonString

func (r *CreateDomainRequest) ToJsonString() string

type CreateDomainRequestParams

type CreateDomainRequestParams struct {
	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Domain name list
	Domain []*CreateDomainParam `json:"Domain,omitnil,omitempty" name:"Domain"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type CreateDomainResponse

type CreateDomainResponse struct {
	*tchttp.BaseResponse
	Response *CreateDomainResponseParams `json:"Response"`
}

func NewCreateDomainResponse

func NewCreateDomainResponse() (response *CreateDomainResponse)

func (*CreateDomainResponse) FromJsonString

func (r *CreateDomainResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreateDomainResponse) ToJsonString

func (r *CreateDomainResponse) ToJsonString() string

type CreateDomainResponseParams

type CreateDomainResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type CreateGlobalDomainRequest

type CreateGlobalDomainRequest struct {
	*tchttp.BaseRequest

	// Domain name list
	DomainUrlList []*string `json:"DomainUrlList,omitnil,omitempty" name:"DomainUrlList"`

	// Domain type. 1: Allowed; 2: Blocked
	DomainType *int64 `json:"DomainType,omitnil,omitempty" name:"DomainType"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewCreateGlobalDomainRequest

func NewCreateGlobalDomainRequest() (request *CreateGlobalDomainRequest)

func (*CreateGlobalDomainRequest) FromJsonString

func (r *CreateGlobalDomainRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreateGlobalDomainRequest) ToJsonString

func (r *CreateGlobalDomainRequest) ToJsonString() string

type CreateGlobalDomainRequestParams

type CreateGlobalDomainRequestParams struct {
	// Domain name list
	DomainUrlList []*string `json:"DomainUrlList,omitnil,omitempty" name:"DomainUrlList"`

	// Domain type. 1: Allowed; 2: Blocked
	DomainType *int64 `json:"DomainType,omitnil,omitempty" name:"DomainType"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type CreateGlobalDomainResp

type CreateGlobalDomainResp struct {
	// Result
	// Note: This field may return null, indicating that no valid values can be obtained.
	Result *bool `json:"Result,omitnil,omitempty" name:"Result"`

	// List of duplicate domain names
	// Note: This field may return null, indicating that no valid values can be obtained.
	RepeatUrls []*string `json:"RepeatUrls,omitnil,omitempty" name:"RepeatUrls"`

	// List of allowed domain names
	// Note: This field may return null, indicating that no valid values can be obtained.
	ExistsWhiteUrls []*string `json:"ExistsWhiteUrls,omitnil,omitempty" name:"ExistsWhiteUrls"`

	// List of blocked domain names
	// Note: This field may return null, indicating that no valid values can be obtained.
	ExistsBlackUrls []*string `json:"ExistsBlackUrls,omitnil,omitempty" name:"ExistsBlackUrls"`
}

type CreateGlobalDomainResponse

type CreateGlobalDomainResponse struct {
	*tchttp.BaseResponse
	Response *CreateGlobalDomainResponseParams `json:"Response"`
}

func NewCreateGlobalDomainResponse

func NewCreateGlobalDomainResponse() (response *CreateGlobalDomainResponse)

func (*CreateGlobalDomainResponse) FromJsonString

func (r *CreateGlobalDomainResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreateGlobalDomainResponse) ToJsonString

func (r *CreateGlobalDomainResponse) ToJsonString() string

type CreateGlobalDomainResponseParams

type CreateGlobalDomainResponseParams struct {
	// Response data
	Data *CreateGlobalDomainResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type CreateMNPRequest

type CreateMNPRequest struct {
	*tchttp.BaseRequest

	// Mini program type
	MNPType *string `json:"MNPType,omitnil,omitempty" name:"MNPType"`

	// Mini program name
	MNPName *string `json:"MNPName,omitnil,omitempty" name:"MNPName"`

	// Mini app icon
	MNPIcon *string `json:"MNPIcon,omitnil,omitempty" name:"MNPIcon"`

	// Mini program introduction
	MNPIntro *string `json:"MNPIntro,omitnil,omitempty" name:"MNPIntro"`

	// Mini program description
	MNPDesc *string `json:"MNPDesc,omitnil,omitempty" name:"MNPDesc"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`
}

func NewCreateMNPRequest

func NewCreateMNPRequest() (request *CreateMNPRequest)

func (*CreateMNPRequest) FromJsonString

func (r *CreateMNPRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreateMNPRequest) ToJsonString

func (r *CreateMNPRequest) ToJsonString() string

type CreateMNPRequestParams

type CreateMNPRequestParams struct {
	// Mini program type
	MNPType *string `json:"MNPType,omitnil,omitempty" name:"MNPType"`

	// Mini program name
	MNPName *string `json:"MNPName,omitnil,omitempty" name:"MNPName"`

	// Mini app icon
	MNPIcon *string `json:"MNPIcon,omitnil,omitempty" name:"MNPIcon"`

	// Mini program introduction
	MNPIntro *string `json:"MNPIntro,omitnil,omitempty" name:"MNPIntro"`

	// Mini program description
	MNPDesc *string `json:"MNPDesc,omitnil,omitempty" name:"MNPDesc"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`
}

Predefined struct for user

type CreateMNPResponse

type CreateMNPResponse struct {
	*tchttp.BaseResponse
	Response *CreateMNPResponseParams `json:"Response"`
}

func NewCreateMNPResponse

func NewCreateMNPResponse() (response *CreateMNPResponse)

func (*CreateMNPResponse) FromJsonString

func (r *CreateMNPResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreateMNPResponse) ToJsonString

func (r *CreateMNPResponse) ToJsonString() string

type CreateMNPResponseParams

type CreateMNPResponseParams struct {
	// Response data
	Data *ResourceIdStringInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type CreateMNPVersionCompileTaskResp

type CreateMNPVersionCompileTaskResp struct {
	// Task ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	TaskId *string `json:"TaskId,omitnil,omitempty" name:"TaskId"`

	// WS address
	// Note: This field may return null, indicating that no valid values can be obtained.
	WSUrl *string `json:"WSUrl,omitnil,omitempty" name:"WSUrl"`

	// Room ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	RoomId *string `json:"RoomId,omitnil,omitempty" name:"RoomId"`
}

type CreateOnlineApplyRequest

type CreateOnlineApplyRequest struct {
	*tchttp.BaseRequest

	// Mini program version ID
	MNPVersionId *int64 `json:"MNPVersionId,omitnil,omitempty" name:"MNPVersionId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewCreateOnlineApplyRequest

func NewCreateOnlineApplyRequest() (request *CreateOnlineApplyRequest)

func (*CreateOnlineApplyRequest) FromJsonString

func (r *CreateOnlineApplyRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreateOnlineApplyRequest) ToJsonString

func (r *CreateOnlineApplyRequest) ToJsonString() string

type CreateOnlineApplyRequestParams

type CreateOnlineApplyRequestParams struct {
	// Mini program version ID
	MNPVersionId *int64 `json:"MNPVersionId,omitnil,omitempty" name:"MNPVersionId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type CreateOnlineApplyResponse

type CreateOnlineApplyResponse struct {
	*tchttp.BaseResponse
	Response *CreateOnlineApplyResponseParams `json:"Response"`
}

func NewCreateOnlineApplyResponse

func NewCreateOnlineApplyResponse() (response *CreateOnlineApplyResponse)

func (*CreateOnlineApplyResponse) FromJsonString

func (r *CreateOnlineApplyResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreateOnlineApplyResponse) ToJsonString

func (r *CreateOnlineApplyResponse) ToJsonString() string

type CreateOnlineApplyResponseParams

type CreateOnlineApplyResponseParams struct {
	// Response data
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type CreatePlatformAuditRequest

type CreatePlatformAuditRequest struct {
	*tchttp.BaseRequest

	// Mini program version ID
	MNPVersionId *int64 `json:"MNPVersionId,omitnil,omitempty" name:"MNPVersionId"`

	// submit - submit the review ticket, cancel - cancel the review ticket
	ApplyAction *string `json:"ApplyAction,omitnil,omitempty" name:"ApplyAction"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewCreatePlatformAuditRequest

func NewCreatePlatformAuditRequest() (request *CreatePlatformAuditRequest)

func (*CreatePlatformAuditRequest) FromJsonString

func (r *CreatePlatformAuditRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreatePlatformAuditRequest) ToJsonString

func (r *CreatePlatformAuditRequest) ToJsonString() string

type CreatePlatformAuditRequestParams

type CreatePlatformAuditRequestParams struct {
	// Mini program version ID
	MNPVersionId *int64 `json:"MNPVersionId,omitnil,omitempty" name:"MNPVersionId"`

	// submit - submit the review ticket, cancel - cancel the review ticket
	ApplyAction *string `json:"ApplyAction,omitnil,omitempty" name:"ApplyAction"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type CreatePlatformAuditResponse

type CreatePlatformAuditResponse struct {
	*tchttp.BaseResponse
	Response *CreatePlatformAuditResponseParams `json:"Response"`
}

func NewCreatePlatformAuditResponse

func NewCreatePlatformAuditResponse() (response *CreatePlatformAuditResponse)

func (*CreatePlatformAuditResponse) FromJsonString

func (r *CreatePlatformAuditResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreatePlatformAuditResponse) ToJsonString

func (r *CreatePlatformAuditResponse) ToJsonString() string

type CreatePlatformAuditResponseParams

type CreatePlatformAuditResponseParams struct {
	// Response data
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type CreatePresetKeyRequest

type CreatePresetKeyRequest struct {
	*tchttp.BaseRequest
}

func NewCreatePresetKeyRequest

func NewCreatePresetKeyRequest() (request *CreatePresetKeyRequest)

func (*CreatePresetKeyRequest) FromJsonString

func (r *CreatePresetKeyRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreatePresetKeyRequest) ToJsonString

func (r *CreatePresetKeyRequest) ToJsonString() string

type CreatePresetKeyRequestParams

type CreatePresetKeyRequestParams struct {
}

Predefined struct for user

type CreatePresetKeyResponse

type CreatePresetKeyResponse struct {
	*tchttp.BaseResponse
	Response *CreatePresetKeyResponseParams `json:"Response"`
}

func NewCreatePresetKeyResponse

func NewCreatePresetKeyResponse() (response *CreatePresetKeyResponse)

func (*CreatePresetKeyResponse) FromJsonString

func (r *CreatePresetKeyResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreatePresetKeyResponse) ToJsonString

func (r *CreatePresetKeyResponse) ToJsonString() string

type CreatePresetKeyResponseParams

type CreatePresetKeyResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *PresetResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type CreateSensitiveAPIReq

type CreateSensitiveAPIReq struct {
	// API name
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApiName *string `json:"ApiName,omitnil,omitempty" name:"ApiName"`

	// API description
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApiDesc *string `json:"ApiDesc,omitnil,omitempty" name:"ApiDesc"`

	// API type 1-System API 2-Custom API
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApiType *int64 `json:"ApiType,omitnil,omitempty" name:"ApiType"`
}

type CreateSensitiveAPIRequest

type CreateSensitiveAPIRequest struct {
	*tchttp.BaseRequest

	// Application ID
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// New API list
	ApiList []*CreateSensitiveAPIReq `json:"ApiList,omitnil,omitempty" name:"ApiList"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewCreateSensitiveAPIRequest

func NewCreateSensitiveAPIRequest() (request *CreateSensitiveAPIRequest)

func (*CreateSensitiveAPIRequest) FromJsonString

func (r *CreateSensitiveAPIRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreateSensitiveAPIRequest) ToJsonString

func (r *CreateSensitiveAPIRequest) ToJsonString() string

type CreateSensitiveAPIRequestParams

type CreateSensitiveAPIRequestParams struct {
	// Application ID
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// New API list
	ApiList []*CreateSensitiveAPIReq `json:"ApiList,omitnil,omitempty" name:"ApiList"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type CreateSensitiveAPIResponse

type CreateSensitiveAPIResponse struct {
	*tchttp.BaseResponse
	Response *CreateSensitiveAPIResponseParams `json:"Response"`
}

func NewCreateSensitiveAPIResponse

func NewCreateSensitiveAPIResponse() (response *CreateSensitiveAPIResponse)

func (*CreateSensitiveAPIResponse) FromJsonString

func (r *CreateSensitiveAPIResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreateSensitiveAPIResponse) ToJsonString

func (r *CreateSensitiveAPIResponse) ToJsonString() string

type CreateSensitiveAPIResponseParams

type CreateSensitiveAPIResponseParams struct {
	// Response data
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type CreateSensitiveApiApplyRequest

type CreateSensitiveApiApplyRequest struct {
	*tchttp.BaseRequest

	// Application ID
	APIId *string `json:"APIId,omitnil,omitempty" name:"APIId"`

	// Reason for application
	ApplyReason *string `json:"ApplyReason,omitnil,omitempty" name:"ApplyReason"`

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewCreateSensitiveApiApplyRequest

func NewCreateSensitiveApiApplyRequest() (request *CreateSensitiveApiApplyRequest)

func (*CreateSensitiveApiApplyRequest) FromJsonString

func (r *CreateSensitiveApiApplyRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreateSensitiveApiApplyRequest) ToJsonString

func (r *CreateSensitiveApiApplyRequest) ToJsonString() string

type CreateSensitiveApiApplyRequestParams

type CreateSensitiveApiApplyRequestParams struct {
	// Application ID
	APIId *string `json:"APIId,omitnil,omitempty" name:"APIId"`

	// Reason for application
	ApplyReason *string `json:"ApplyReason,omitnil,omitempty" name:"ApplyReason"`

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type CreateSensitiveApiApplyResponse

type CreateSensitiveApiApplyResponse struct {
	*tchttp.BaseResponse
	Response *CreateSensitiveApiApplyResponseParams `json:"Response"`
}

func NewCreateSensitiveApiApplyResponse

func NewCreateSensitiveApiApplyResponse() (response *CreateSensitiveApiApplyResponse)

func (*CreateSensitiveApiApplyResponse) FromJsonString

func (r *CreateSensitiveApiApplyResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreateSensitiveApiApplyResponse) ToJsonString

func (r *CreateSensitiveApiApplyResponse) ToJsonString() string

type CreateSensitiveApiApplyResponseParams

type CreateSensitiveApiApplyResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *ResourceIdStringInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type CreateTeamMemberInfoReq

type CreateTeamMemberInfoReq struct {
	// User ID
	UserId *string `json:"UserId,omitnil,omitempty" name:"UserId"`

	// User role ID
	UserRoleId *int64 `json:"UserRoleId,omitnil,omitempty" name:"UserRoleId"`
}

type CreateTeamMemberInfoResp

type CreateTeamMemberInfoResp struct {
	// User ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	UserId *string `json:"UserId,omitnil,omitempty" name:"UserId"`
}

type CreateTeamMemberRequest

type CreateTeamMemberRequest struct {
	*tchttp.BaseRequest

	// Username
	UserName *string `json:"UserName,omitnil,omitempty" name:"UserName"`

	// User account
	UserAccount *string `json:"UserAccount,omitnil,omitempty" name:"UserAccount"`

	// Account password. Use CreatePresetKey to get publick key to encrypt the password.
	UserPassword *string `json:"UserPassword,omitnil,omitempty" name:"UserPassword"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Team role
	RoleId *int64 `json:"RoleId,omitnil,omitempty" name:"RoleId"`

	// Call CreatePresetKey to get the keyID from RequestId
	KeyId *string `json:"KeyId,omitnil,omitempty" name:"KeyId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewCreateTeamMemberRequest

func NewCreateTeamMemberRequest() (request *CreateTeamMemberRequest)

func (*CreateTeamMemberRequest) FromJsonString

func (r *CreateTeamMemberRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreateTeamMemberRequest) ToJsonString

func (r *CreateTeamMemberRequest) ToJsonString() string

type CreateTeamMemberRequestParams

type CreateTeamMemberRequestParams struct {
	// Username
	UserName *string `json:"UserName,omitnil,omitempty" name:"UserName"`

	// User account
	UserAccount *string `json:"UserAccount,omitnil,omitempty" name:"UserAccount"`

	// Account password. Use CreatePresetKey to get publick key to encrypt the password.
	UserPassword *string `json:"UserPassword,omitnil,omitempty" name:"UserPassword"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Team role
	RoleId *int64 `json:"RoleId,omitnil,omitempty" name:"RoleId"`

	// Call CreatePresetKey to get the keyID from RequestId
	KeyId *string `json:"KeyId,omitnil,omitempty" name:"KeyId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type CreateTeamMemberResponse

type CreateTeamMemberResponse struct {
	*tchttp.BaseResponse
	Response *CreateTeamMemberResponseParams `json:"Response"`
}

func NewCreateTeamMemberResponse

func NewCreateTeamMemberResponse() (response *CreateTeamMemberResponse)

func (*CreateTeamMemberResponse) FromJsonString

func (r *CreateTeamMemberResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreateTeamMemberResponse) ToJsonString

func (r *CreateTeamMemberResponse) ToJsonString() string

type CreateTeamMemberResponseParams

type CreateTeamMemberResponseParams struct {
	// Response data
	Data *CreateTeamMemberInfoResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type CreateTeamRequest

type CreateTeamRequest struct {
	*tchttp.BaseRequest

	// Team name
	TeamName *string `json:"TeamName,omitnil,omitempty" name:"TeamName"`

	// Administrator name
	AdminUserId *string `json:"AdminUserId,omitnil,omitempty" name:"AdminUserId"`

	// Team permission type 1 Mini program 2 App (Multiple selection)
	TeamRoleTypeList []*int64 `json:"TeamRoleTypeList,omitnil,omitempty" name:"TeamRoleTypeList"`

	// Remarks
	Remark *string `json:"Remark,omitnil,omitempty" name:"Remark"`

	// Platform ID, required for API call
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Associated team ID
	RelatedTeamId *string `json:"RelatedTeamId,omitnil,omitempty" name:"RelatedTeamId"`
}

func NewCreateTeamRequest

func NewCreateTeamRequest() (request *CreateTeamRequest)

func (*CreateTeamRequest) FromJsonString

func (r *CreateTeamRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreateTeamRequest) ToJsonString

func (r *CreateTeamRequest) ToJsonString() string

type CreateTeamRequestParams

type CreateTeamRequestParams struct {
	// Team name
	TeamName *string `json:"TeamName,omitnil,omitempty" name:"TeamName"`

	// Administrator name
	AdminUserId *string `json:"AdminUserId,omitnil,omitempty" name:"AdminUserId"`

	// Team permission type 1 Mini program 2 App (Multiple selection)
	TeamRoleTypeList []*int64 `json:"TeamRoleTypeList,omitnil,omitempty" name:"TeamRoleTypeList"`

	// Remarks
	Remark *string `json:"Remark,omitnil,omitempty" name:"Remark"`

	// Platform ID, required for API call
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Associated team ID
	RelatedTeamId *string `json:"RelatedTeamId,omitnil,omitempty" name:"RelatedTeamId"`
}

Predefined struct for user

type CreateTeamResponse

type CreateTeamResponse struct {
	*tchttp.BaseResponse
	Response *CreateTeamResponseParams `json:"Response"`
}

func NewCreateTeamResponse

func NewCreateTeamResponse() (response *CreateTeamResponse)

func (*CreateTeamResponse) FromJsonString

func (r *CreateTeamResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreateTeamResponse) ToJsonString

func (r *CreateTeamResponse) ToJsonString() string

type CreateTeamResponseParams

type CreateTeamResponseParams struct {
	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type CreateUserRequest

type CreateUserRequest struct {
	*tchttp.BaseRequest

	// User account
	UserAccount *string `json:"UserAccount,omitnil,omitempty" name:"UserAccount"`

	// User name
	UserName *string `json:"UserName,omitnil,omitempty" name:"UserName"`

	// User account type. 2: Platform administrator; 3: Ordinary member.
	AccountType *int64 `json:"AccountType,omitnil,omitempty" name:"AccountType"`

	// Account password. Use CreatePresetKey to get the public key to encrypt the password.
	Password *string `json:"Password,omitnil,omitempty" name:"Password"`

	// Call CreatePresetKey to get the keyID from RequestId
	KeyId *string `json:"KeyId,omitnil,omitempty" name:"KeyId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewCreateUserRequest

func NewCreateUserRequest() (request *CreateUserRequest)

func (*CreateUserRequest) FromJsonString

func (r *CreateUserRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreateUserRequest) ToJsonString

func (r *CreateUserRequest) ToJsonString() string

type CreateUserRequestParams

type CreateUserRequestParams struct {
	// User account
	UserAccount *string `json:"UserAccount,omitnil,omitempty" name:"UserAccount"`

	// User name
	UserName *string `json:"UserName,omitnil,omitempty" name:"UserName"`

	// User account type. 2: Platform administrator; 3: Ordinary member.
	AccountType *int64 `json:"AccountType,omitnil,omitempty" name:"AccountType"`

	// Account password. Use CreatePresetKey to get the public key to encrypt the password.
	Password *string `json:"Password,omitnil,omitempty" name:"Password"`

	// Call CreatePresetKey to get the keyID from RequestId
	KeyId *string `json:"KeyId,omitnil,omitempty" name:"KeyId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type CreateUserResponse

type CreateUserResponse struct {
	*tchttp.BaseResponse
	Response *CreateUserResponseParams `json:"Response"`
}

func NewCreateUserResponse

func NewCreateUserResponse() (response *CreateUserResponse)

func (*CreateUserResponse) FromJsonString

func (r *CreateUserResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*CreateUserResponse) ToJsonString

func (r *CreateUserResponse) ToJsonString() string

type CreateUserResponseParams

type CreateUserResponseParams struct {
	// Response data, user ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *ResourceIdStringInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DeleteApplicationRequest

type DeleteApplicationRequest struct {
	*tchttp.BaseRequest

	// Application ID
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDeleteApplicationRequest

func NewDeleteApplicationRequest() (request *DeleteApplicationRequest)

func (*DeleteApplicationRequest) FromJsonString

func (r *DeleteApplicationRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DeleteApplicationRequest) ToJsonString

func (r *DeleteApplicationRequest) ToJsonString() string

type DeleteApplicationRequestParams

type DeleteApplicationRequestParams struct {
	// Application ID
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DeleteApplicationResponse

type DeleteApplicationResponse struct {
	*tchttp.BaseResponse
	Response *DeleteApplicationResponseParams `json:"Response"`
}

func NewDeleteApplicationResponse

func NewDeleteApplicationResponse() (response *DeleteApplicationResponse)

func (*DeleteApplicationResponse) FromJsonString

func (r *DeleteApplicationResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DeleteApplicationResponse) ToJsonString

func (r *DeleteApplicationResponse) ToJsonString() string

type DeleteApplicationResponseParams

type DeleteApplicationResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DeleteGlobalDomainRequest

type DeleteGlobalDomainRequest struct {
	*tchttp.BaseRequest

	// Domain ID
	DomainId *int64 `json:"DomainId,omitnil,omitempty" name:"DomainId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDeleteGlobalDomainRequest

func NewDeleteGlobalDomainRequest() (request *DeleteGlobalDomainRequest)

func (*DeleteGlobalDomainRequest) FromJsonString

func (r *DeleteGlobalDomainRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DeleteGlobalDomainRequest) ToJsonString

func (r *DeleteGlobalDomainRequest) ToJsonString() string

type DeleteGlobalDomainRequestParams

type DeleteGlobalDomainRequestParams struct {
	// Domain ID
	DomainId *int64 `json:"DomainId,omitnil,omitempty" name:"DomainId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DeleteGlobalDomainResponse

type DeleteGlobalDomainResponse struct {
	*tchttp.BaseResponse
	Response *DeleteGlobalDomainResponseParams `json:"Response"`
}

func NewDeleteGlobalDomainResponse

func NewDeleteGlobalDomainResponse() (response *DeleteGlobalDomainResponse)

func (*DeleteGlobalDomainResponse) FromJsonString

func (r *DeleteGlobalDomainResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DeleteGlobalDomainResponse) ToJsonString

func (r *DeleteGlobalDomainResponse) ToJsonString() string

type DeleteGlobalDomainResponseParams

type DeleteGlobalDomainResponseParams struct {
	// Response data
	Data *GlobalDomainDeleteResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DeleteMNPRequest

type DeleteMNPRequest struct {
	*tchttp.BaseRequest

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDeleteMNPRequest

func NewDeleteMNPRequest() (request *DeleteMNPRequest)

func (*DeleteMNPRequest) FromJsonString

func (r *DeleteMNPRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DeleteMNPRequest) ToJsonString

func (r *DeleteMNPRequest) ToJsonString() string

type DeleteMNPRequestParams

type DeleteMNPRequestParams struct {
	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DeleteMNPResponse

type DeleteMNPResponse struct {
	*tchttp.BaseResponse
	Response *DeleteMNPResponseParams `json:"Response"`
}

func NewDeleteMNPResponse

func NewDeleteMNPResponse() (response *DeleteMNPResponse)

func (*DeleteMNPResponse) FromJsonString

func (r *DeleteMNPResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DeleteMNPResponse) ToJsonString

func (r *DeleteMNPResponse) ToJsonString() string

type DeleteMNPResponseParams

type DeleteMNPResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DeleteSensitiveAPIRequest

type DeleteSensitiveAPIRequest struct {
	*tchttp.BaseRequest

	// API ID
	ApiId *string `json:"ApiId,omitnil,omitempty" name:"ApiId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDeleteSensitiveAPIRequest

func NewDeleteSensitiveAPIRequest() (request *DeleteSensitiveAPIRequest)

func (*DeleteSensitiveAPIRequest) FromJsonString

func (r *DeleteSensitiveAPIRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DeleteSensitiveAPIRequest) ToJsonString

func (r *DeleteSensitiveAPIRequest) ToJsonString() string

type DeleteSensitiveAPIRequestParams

type DeleteSensitiveAPIRequestParams struct {
	// API ID
	ApiId *string `json:"ApiId,omitnil,omitempty" name:"ApiId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DeleteSensitiveAPIResponse

type DeleteSensitiveAPIResponse struct {
	*tchttp.BaseResponse
	Response *DeleteSensitiveAPIResponseParams `json:"Response"`
}

func NewDeleteSensitiveAPIResponse

func NewDeleteSensitiveAPIResponse() (response *DeleteSensitiveAPIResponse)

func (*DeleteSensitiveAPIResponse) FromJsonString

func (r *DeleteSensitiveAPIResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DeleteSensitiveAPIResponse) ToJsonString

func (r *DeleteSensitiveAPIResponse) ToJsonString() string

type DeleteSensitiveAPIResponseParams

type DeleteSensitiveAPIResponseParams struct {
	// Response data
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DeleteTeamMemberRequest

type DeleteTeamMemberRequest struct {
	*tchttp.BaseRequest

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// User ID
	UserId *string `json:"UserId,omitnil,omitempty" name:"UserId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDeleteTeamMemberRequest

func NewDeleteTeamMemberRequest() (request *DeleteTeamMemberRequest)

func (*DeleteTeamMemberRequest) FromJsonString

func (r *DeleteTeamMemberRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DeleteTeamMemberRequest) ToJsonString

func (r *DeleteTeamMemberRequest) ToJsonString() string

type DeleteTeamMemberRequestParams

type DeleteTeamMemberRequestParams struct {
	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// User ID
	UserId *string `json:"UserId,omitnil,omitempty" name:"UserId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DeleteTeamMemberResponse

type DeleteTeamMemberResponse struct {
	*tchttp.BaseResponse
	Response *DeleteTeamMemberResponseParams `json:"Response"`
}

func NewDeleteTeamMemberResponse

func NewDeleteTeamMemberResponse() (response *DeleteTeamMemberResponse)

func (*DeleteTeamMemberResponse) FromJsonString

func (r *DeleteTeamMemberResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DeleteTeamMemberResponse) ToJsonString

func (r *DeleteTeamMemberResponse) ToJsonString() string

type DeleteTeamMemberResponseParams

type DeleteTeamMemberResponseParams struct {
	// Response data
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DeleteTeamRequest

type DeleteTeamRequest struct {
	*tchttp.BaseRequest

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDeleteTeamRequest

func NewDeleteTeamRequest() (request *DeleteTeamRequest)

func (*DeleteTeamRequest) FromJsonString

func (r *DeleteTeamRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DeleteTeamRequest) ToJsonString

func (r *DeleteTeamRequest) ToJsonString() string

type DeleteTeamRequestParams

type DeleteTeamRequestParams struct {
	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DeleteTeamResponse

type DeleteTeamResponse struct {
	*tchttp.BaseResponse
	Response *DeleteTeamResponseParams `json:"Response"`
}

func NewDeleteTeamResponse

func NewDeleteTeamResponse() (response *DeleteTeamResponse)

func (*DeleteTeamResponse) FromJsonString

func (r *DeleteTeamResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DeleteTeamResponse) ToJsonString

func (r *DeleteTeamResponse) ToJsonString() string

type DeleteTeamResponseParams

type DeleteTeamResponseParams struct {
	// Response data
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DeleteUserRequest

type DeleteUserRequest struct {
	*tchttp.BaseRequest

	// User ID
	UserId *string `json:"UserId,omitnil,omitempty" name:"UserId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDeleteUserRequest

func NewDeleteUserRequest() (request *DeleteUserRequest)

func (*DeleteUserRequest) FromJsonString

func (r *DeleteUserRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DeleteUserRequest) ToJsonString

func (r *DeleteUserRequest) ToJsonString() string

type DeleteUserRequestParams

type DeleteUserRequestParams struct {
	// User ID
	UserId *string `json:"UserId,omitnil,omitempty" name:"UserId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DeleteUserResponse

type DeleteUserResponse struct {
	*tchttp.BaseResponse
	Response *DeleteUserResponseParams `json:"Response"`
}

func NewDeleteUserResponse

func NewDeleteUserResponse() (response *DeleteUserResponse)

func (*DeleteUserResponse) FromJsonString

func (r *DeleteUserResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DeleteUserResponse) ToJsonString

func (r *DeleteUserResponse) ToJsonString() string

type DeleteUserResponseParams

type DeleteUserResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeApplicationConfigRequest

type DescribeApplicationConfigRequest struct {
	*tchttp.BaseRequest

	// Application ID
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// Application platform. 2: Android; 3: iOS
	AppType *int64 `json:"AppType,omitnil,omitempty" name:"AppType"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDescribeApplicationConfigRequest

func NewDescribeApplicationConfigRequest() (request *DescribeApplicationConfigRequest)

func (*DescribeApplicationConfigRequest) FromJsonString

func (r *DescribeApplicationConfigRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeApplicationConfigRequest) ToJsonString

func (r *DescribeApplicationConfigRequest) ToJsonString() string

type DescribeApplicationConfigRequestParams

type DescribeApplicationConfigRequestParams struct {
	// Application ID
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// Application platform. 2: Android; 3: iOS
	AppType *int64 `json:"AppType,omitnil,omitempty" name:"AppType"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DescribeApplicationConfigResponse

type DescribeApplicationConfigResponse struct {
	*tchttp.BaseResponse
	Response *DescribeApplicationConfigResponseParams `json:"Response"`
}

func NewDescribeApplicationConfigResponse

func NewDescribeApplicationConfigResponse() (response *DescribeApplicationConfigResponse)

func (*DescribeApplicationConfigResponse) FromJsonString

func (r *DescribeApplicationConfigResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeApplicationConfigResponse) ToJsonString

func (r *DescribeApplicationConfigResponse) ToJsonString() string

type DescribeApplicationConfigResponseParams

type DescribeApplicationConfigResponseParams struct {
	// Response data
	Data *DownloadApplicationConfigResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeApplicationListRequest

type DescribeApplicationListRequest struct {
	*tchttp.BaseRequest

	// Page offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Keywords for search (app name)
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`
}

func NewDescribeApplicationListRequest

func NewDescribeApplicationListRequest() (request *DescribeApplicationListRequest)

func (*DescribeApplicationListRequest) FromJsonString

func (r *DescribeApplicationListRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeApplicationListRequest) ToJsonString

func (r *DescribeApplicationListRequest) ToJsonString() string

type DescribeApplicationListRequestParams

type DescribeApplicationListRequestParams struct {
	// Page offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Keywords for search (app name)
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`
}

Predefined struct for user

type DescribeApplicationListResponse

type DescribeApplicationListResponse struct {
	*tchttp.BaseResponse
	Response *DescribeApplicationListResponseParams `json:"Response"`
}

func NewDescribeApplicationListResponse

func NewDescribeApplicationListResponse() (response *DescribeApplicationListResponse)

func (*DescribeApplicationListResponse) FromJsonString

func (r *DescribeApplicationListResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeApplicationListResponse) ToJsonString

func (r *DescribeApplicationListResponse) ToJsonString() string

type DescribeApplicationListResponseParams

type DescribeApplicationListResponseParams struct {
	// Response data
	Data *ApplicationPageInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeApplicationMNPVersionAuditListInfoResp

type DescribeApplicationMNPVersionAuditListInfoResp struct {
	// Approval ticket ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	AuditNo *string `json:"AuditNo,omitnil,omitempty" name:"AuditNo"`

	// Application ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// Approval status : 1: Processing; 2: Rejected; 3: Approved; 4: Cancelled
	// Note: This field may return null, indicating that no valid values can be obtained.
	AuditStatus *int64 `json:"AuditStatus,omitnil,omitempty" name:"AuditStatus"`

	// Mini program ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Mini program version
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPVersion *string `json:"MNPVersion,omitnil,omitempty" name:"MNPVersion"`

	// Mini program version ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPVersionId *int64 `json:"MNPVersionId,omitnil,omitempty" name:"MNPVersionId"`

	// Applicant
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplyUser *string `json:"ApplyUser,omitnil,omitempty" name:"ApplyUser"`

	// Application time
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplyTime *string `json:"ApplyTime,omitnil,omitempty" name:"ApplyTime"`

	// Mini program name
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPName *string `json:"MNPName,omitnil,omitempty" name:"MNPName"`

	// Mini program icon
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPIcon *string `json:"MNPIcon,omitnil,omitempty" name:"MNPIcon"`

	// Application name
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationName *string `json:"ApplicationName,omitnil,omitempty" name:"ApplicationName"`

	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationLogo *string `json:"ApplicationLogo,omitnil,omitempty" name:"ApplicationLogo"`

	// Team ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Team name
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamName *string `json:"TeamName,omitnil,omitempty" name:"TeamName"`

	// Android app download address
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationAndUrl *string `json:"ApplicationAndUrl,omitnil,omitempty" name:"ApplicationAndUrl"`

	// iOS app download address
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationIOSUrl *string `json:"ApplicationIOSUrl,omitnil,omitempty" name:"ApplicationIOSUrl"`

	// Mini Program QR code
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPQrCodeUrl *string `json:"MNPQrCodeUrl,omitnil,omitempty" name:"MNPQrCodeUrl"`

	// Mini program type
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPType *string `json:"MNPType,omitnil,omitempty" name:"MNPType"`

	// Approver
	// Note: This field may return null, indicating that no valid values can be obtained.
	AuditUser *string `json:"AuditUser,omitnil,omitempty" name:"AuditUser"`

	// Approval time
	// Note: This field may return null, indicating that no valid values can be obtained.
	AuditTime *string `json:"AuditTime,omitnil,omitempty" name:"AuditTime"`

	// Approval notes
	// Note: This field may return null, indicating that no valid values can be obtained.
	AuditNote *string `json:"AuditNote,omitnil,omitempty" name:"AuditNote"`

	// Scan result. 0: Scanning, 1: Healthy; 2: Unhealthy; 3: Task failed
	// Note: This field may return null, indicating that no valid values can be obtained.
	ScanStatus *int64 `json:"ScanStatus,omitnil,omitempty" name:"ScanStatus"`

	// Scan score
	// Note: This field may return null, indicating that no valid values can be obtained.
	ScanScore *int64 `json:"ScanScore,omitnil,omitempty" name:"ScanScore"`

	// Address scanned
	// Note: This field may return null, indicating that no valid values can be obtained.
	ScanHtmlPath *string `json:"ScanHtmlPath,omitnil,omitempty" name:"ScanHtmlPath"`
}

type DescribeApplicationMNPVersionAuditListPageResp

type DescribeApplicationMNPVersionAuditListPageResp struct {
	// Total number of results.
	// Note: This field may return null, indicating that no valid values can be obtained.
	TotalCount *int64 `json:"TotalCount,omitnil,omitempty" name:"TotalCount"`

	// List information
	// Note: This field may return null, indicating that no valid values can be obtained.
	DataList []*DescribeApplicationMNPVersionAuditListInfoResp `json:"DataList,omitnil,omitempty" name:"DataList"`
}

type DescribeApplicationMNPVersionAuditListRequest

type DescribeApplicationMNPVersionAuditListRequest struct {
	*tchttp.BaseRequest

	// Page offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Approval status 1 Processing 2 Rejected 3 Approved 4 Cancelled
	AuditStatusList []*int64 `json:"AuditStatusList,omitnil,omitempty" name:"AuditStatusList"`

	// Keyword
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`

	// Application ID
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`
}

func NewDescribeApplicationMNPVersionAuditListRequest

func NewDescribeApplicationMNPVersionAuditListRequest() (request *DescribeApplicationMNPVersionAuditListRequest)

func (*DescribeApplicationMNPVersionAuditListRequest) FromJsonString

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeApplicationMNPVersionAuditListRequest) ToJsonString

type DescribeApplicationMNPVersionAuditListRequestParams

type DescribeApplicationMNPVersionAuditListRequestParams struct {
	// Page offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Approval status 1 Processing 2 Rejected 3 Approved 4 Cancelled
	AuditStatusList []*int64 `json:"AuditStatusList,omitnil,omitempty" name:"AuditStatusList"`

	// Keyword
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`

	// Application ID
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`
}

Predefined struct for user

type DescribeApplicationMNPVersionAuditListResponse

type DescribeApplicationMNPVersionAuditListResponse struct {
	*tchttp.BaseResponse
	Response *DescribeApplicationMNPVersionAuditListResponseParams `json:"Response"`
}

func NewDescribeApplicationMNPVersionAuditListResponse

func NewDescribeApplicationMNPVersionAuditListResponse() (response *DescribeApplicationMNPVersionAuditListResponse)

func (*DescribeApplicationMNPVersionAuditListResponse) FromJsonString

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeApplicationMNPVersionAuditListResponse) ToJsonString

type DescribeApplicationMNPVersionAuditListResponseParams

type DescribeApplicationMNPVersionAuditListResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *DescribeApplicationMNPVersionAuditListPageResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeApplicationRequest

type DescribeApplicationRequest struct {
	*tchttp.BaseRequest

	// Application ID
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDescribeApplicationRequest

func NewDescribeApplicationRequest() (request *DescribeApplicationRequest)

func (*DescribeApplicationRequest) FromJsonString

func (r *DescribeApplicationRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeApplicationRequest) ToJsonString

func (r *DescribeApplicationRequest) ToJsonString() string

type DescribeApplicationRequestParams

type DescribeApplicationRequestParams struct {
	// Application ID
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DescribeApplicationResponse

type DescribeApplicationResponse struct {
	*tchttp.BaseResponse
	Response *DescribeApplicationResponseParams `json:"Response"`
}

func NewDescribeApplicationResponse

func NewDescribeApplicationResponse() (response *DescribeApplicationResponse)

func (*DescribeApplicationResponse) FromJsonString

func (r *DescribeApplicationResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeApplicationResponse) ToJsonString

func (r *DescribeApplicationResponse) ToJsonString() string

type DescribeApplicationResponseParams

type DescribeApplicationResponseParams struct {
	// Response data
	Data *ApplicationDetail `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeConsoleMNPVersionCompileTaskRequest

type DescribeConsoleMNPVersionCompileTaskRequest struct {
	*tchttp.BaseRequest

	// Task ID
	BusinessId *string `json:"BusinessId,omitnil,omitempty" name:"BusinessId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDescribeConsoleMNPVersionCompileTaskRequest

func NewDescribeConsoleMNPVersionCompileTaskRequest() (request *DescribeConsoleMNPVersionCompileTaskRequest)

func (*DescribeConsoleMNPVersionCompileTaskRequest) FromJsonString

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeConsoleMNPVersionCompileTaskRequest) ToJsonString

type DescribeConsoleMNPVersionCompileTaskRequestParams

type DescribeConsoleMNPVersionCompileTaskRequestParams struct {
	// Task ID
	BusinessId *string `json:"BusinessId,omitnil,omitempty" name:"BusinessId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DescribeConsoleMNPVersionCompileTaskResponse

type DescribeConsoleMNPVersionCompileTaskResponse struct {
	*tchttp.BaseResponse
	Response *DescribeConsoleMNPVersionCompileTaskResponseParams `json:"Response"`
}

func NewDescribeConsoleMNPVersionCompileTaskResponse

func NewDescribeConsoleMNPVersionCompileTaskResponse() (response *DescribeConsoleMNPVersionCompileTaskResponse)

func (*DescribeConsoleMNPVersionCompileTaskResponse) FromJsonString

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeConsoleMNPVersionCompileTaskResponse) ToJsonString

type DescribeConsoleMNPVersionCompileTaskResponseParams

type DescribeConsoleMNPVersionCompileTaskResponseParams struct {
	// Response
	Data *DescribeMNPVersionCompileTaskResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeDomainInfoParam

type DescribeDomainInfoParam struct {
	// Multiple domain separators ';'
	// Note: This field may return null, indicating that no valid values can be obtained.
	DomainUrl *string `json:"DomainUrl,omitnil,omitempty" name:"DomainUrl"`

	// Domain type 1-requests domain 2-WebView load domain
	// Note: This field may return null, indicating that no valid values can be obtained.
	DomainType *int64 `json:"DomainType,omitnil,omitempty" name:"DomainType"`
}

type DescribeDomainInfoRequest

type DescribeDomainInfoRequest struct {
	*tchttp.BaseRequest

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDescribeDomainInfoRequest

func NewDescribeDomainInfoRequest() (request *DescribeDomainInfoRequest)

func (*DescribeDomainInfoRequest) FromJsonString

func (r *DescribeDomainInfoRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeDomainInfoRequest) ToJsonString

func (r *DescribeDomainInfoRequest) ToJsonString() string

type DescribeDomainInfoRequestParams

type DescribeDomainInfoRequestParams struct {
	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DescribeDomainInfoResponse

type DescribeDomainInfoResponse struct {
	*tchttp.BaseResponse
	Response *DescribeDomainInfoResponseParams `json:"Response"`
}

func NewDescribeDomainInfoResponse

func NewDescribeDomainInfoResponse() (response *DescribeDomainInfoResponse)

func (*DescribeDomainInfoResponse) FromJsonString

func (r *DescribeDomainInfoResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeDomainInfoResponse) ToJsonString

func (r *DescribeDomainInfoResponse) ToJsonString() string

type DescribeDomainInfoResponseParams

type DescribeDomainInfoResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data []*DescribeDomainInfoParam `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeDomainTeamListInfoResp

type DescribeDomainTeamListInfoResp struct {
	// Team ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Team name
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamName *string `json:"TeamName,omitnil,omitempty" name:"TeamName"`

	// Creator
	// Note: This field may return null, indicating that no valid values can be obtained.
	CreateUser *string `json:"CreateUser,omitnil,omitempty" name:"CreateUser"`

	// Creation time
	// Note: This field may return null, indicating that no valid values can be obtained.
	CreateTime *string `json:"CreateTime,omitnil,omitempty" name:"CreateTime"`
}

type DescribeDomainTeamListPageResp

type DescribeDomainTeamListPageResp struct {
	// Total number of entries
	// Note: This field may return null, indicating that no valid values can be obtained.
	TotalCount *int64 `json:"TotalCount,omitnil,omitempty" name:"TotalCount"`

	// List information
	// Note: This field may return null, indicating that no valid values can be obtained.
	DataList []*DescribeDomainTeamListInfoResp `json:"DataList,omitnil,omitempty" name:"DataList"`
}

type DescribeDomainTeamListRequest

type DescribeDomainTeamListRequest struct {
	*tchttp.BaseRequest

	// Pagination offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Query keywords (team name)
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`
}

func NewDescribeDomainTeamListRequest

func NewDescribeDomainTeamListRequest() (request *DescribeDomainTeamListRequest)

func (*DescribeDomainTeamListRequest) FromJsonString

func (r *DescribeDomainTeamListRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeDomainTeamListRequest) ToJsonString

func (r *DescribeDomainTeamListRequest) ToJsonString() string

type DescribeDomainTeamListRequestParams

type DescribeDomainTeamListRequestParams struct {
	// Pagination offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Query keywords (team name)
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`
}

Predefined struct for user

type DescribeDomainTeamListResponse

type DescribeDomainTeamListResponse struct {
	*tchttp.BaseResponse
	Response *DescribeDomainTeamListResponseParams `json:"Response"`
}

func NewDescribeDomainTeamListResponse

func NewDescribeDomainTeamListResponse() (response *DescribeDomainTeamListResponse)

func (*DescribeDomainTeamListResponse) FromJsonString

func (r *DescribeDomainTeamListResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeDomainTeamListResponse) ToJsonString

func (r *DescribeDomainTeamListResponse) ToJsonString() string

type DescribeDomainTeamListResponseParams

type DescribeDomainTeamListResponseParams struct {
	// Response data
	Data *DescribeDomainTeamListPageResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeGlobalDomainListRequest

type DescribeGlobalDomainListRequest struct {
	*tchttp.BaseRequest

	// Pagination offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Domain type. 1: Allowed; 2: Blocked
	DomainTypes []*int64 `json:"DomainTypes,omitnil,omitempty" name:"DomainTypes"`

	// Domain names to be queried.
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`
}

func NewDescribeGlobalDomainListRequest

func NewDescribeGlobalDomainListRequest() (request *DescribeGlobalDomainListRequest)

func (*DescribeGlobalDomainListRequest) FromJsonString

func (r *DescribeGlobalDomainListRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeGlobalDomainListRequest) ToJsonString

func (r *DescribeGlobalDomainListRequest) ToJsonString() string

type DescribeGlobalDomainListRequestParams

type DescribeGlobalDomainListRequestParams struct {
	// Pagination offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Domain type. 1: Allowed; 2: Blocked
	DomainTypes []*int64 `json:"DomainTypes,omitnil,omitempty" name:"DomainTypes"`

	// Domain names to be queried.
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`
}

Predefined struct for user

type DescribeGlobalDomainListResponse

type DescribeGlobalDomainListResponse struct {
	*tchttp.BaseResponse
	Response *DescribeGlobalDomainListResponseParams `json:"Response"`
}

func NewDescribeGlobalDomainListResponse

func NewDescribeGlobalDomainListResponse() (response *DescribeGlobalDomainListResponse)

func (*DescribeGlobalDomainListResponse) FromJsonString

func (r *DescribeGlobalDomainListResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeGlobalDomainListResponse) ToJsonString

func (r *DescribeGlobalDomainListResponse) ToJsonString() string

type DescribeGlobalDomainListResponseParams

type DescribeGlobalDomainListResponseParams struct {
	// Response data
	Data *GlobalDomainDescribeListPageResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeMNPBoardRequest

type DescribeMNPBoardRequest struct {
	*tchttp.BaseRequest

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDescribeMNPBoardRequest

func NewDescribeMNPBoardRequest() (request *DescribeMNPBoardRequest)

func (*DescribeMNPBoardRequest) FromJsonString

func (r *DescribeMNPBoardRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeMNPBoardRequest) ToJsonString

func (r *DescribeMNPBoardRequest) ToJsonString() string

type DescribeMNPBoardRequestParams

type DescribeMNPBoardRequestParams struct {
	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DescribeMNPBoardResponse

type DescribeMNPBoardResponse struct {
	*tchttp.BaseResponse
	Response *DescribeMNPBoardResponseParams `json:"Response"`
}

func NewDescribeMNPBoardResponse

func NewDescribeMNPBoardResponse() (response *DescribeMNPBoardResponse)

func (*DescribeMNPBoardResponse) FromJsonString

func (r *DescribeMNPBoardResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeMNPBoardResponse) ToJsonString

func (r *DescribeMNPBoardResponse) ToJsonString() string

type DescribeMNPBoardResponseParams

type DescribeMNPBoardResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data []*VersionBoardResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeMNPDetailRequest

type DescribeMNPDetailRequest struct {
	*tchttp.BaseRequest

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDescribeMNPDetailRequest

func NewDescribeMNPDetailRequest() (request *DescribeMNPDetailRequest)

func (*DescribeMNPDetailRequest) FromJsonString

func (r *DescribeMNPDetailRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeMNPDetailRequest) ToJsonString

func (r *DescribeMNPDetailRequest) ToJsonString() string

type DescribeMNPDetailRequestParams

type DescribeMNPDetailRequestParams struct {
	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DescribeMNPDetailResponse

type DescribeMNPDetailResponse struct {
	*tchttp.BaseResponse
	Response *DescribeMNPDetailResponseParams `json:"Response"`
}

func NewDescribeMNPDetailResponse

func NewDescribeMNPDetailResponse() (response *DescribeMNPDetailResponse)

func (*DescribeMNPDetailResponse) FromJsonString

func (r *DescribeMNPDetailResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeMNPDetailResponse) ToJsonString

func (r *DescribeMNPDetailResponse) ToJsonString() string

type DescribeMNPDetailResponseParams

type DescribeMNPDetailResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *MNPDetail `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeMNPManagerDetailData

type DescribeMNPManagerDetailData struct {
	// Mini program type
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPType *string `json:"MNPType,omitnil,omitempty" name:"MNPType"`

	// Mini program ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Mini program name
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPName *string `json:"MNPName,omitnil,omitempty" name:"MNPName"`

	// Mini program icon
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPIcon *string `json:"MNPIcon,omitnil,omitempty" name:"MNPIcon"`

	// Mini program introduction
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPIntro *string `json:"MNPIntro,omitnil,omitempty" name:"MNPIntro"`

	// Mini program description
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPDesc *string `json:"MNPDesc,omitnil,omitempty" name:"MNPDesc"`

	// Timestamp of the creation time
	// Note: This field may return null, indicating that no valid values can be obtained.
	CreateTime *string `json:"CreateTime,omitnil,omitempty" name:"CreateTime"`

	// Creator
	// Note: This field may return null, indicating that no valid values can be obtained.
	CreateUser *string `json:"CreateUser,omitnil,omitempty" name:"CreateUser"`

	// Connection status. 1: Not connected; 2: Connected
	// Note: This field may return null, indicating that no valid values can be obtained.
	AccessStatus *int64 `json:"AccessStatus,omitnil,omitempty" name:"AccessStatus"`

	// The name of the associated team
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamName *string `json:"TeamName,omitnil,omitempty" name:"TeamName"`

	// Team ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Mini program release status. 1: Released; 2: Removed
	// Note: This field may return null, indicating that no valid values can be obtained.
	Status *int64 `json:"Status,omitnil,omitempty" name:"Status"`
}

type DescribeMNPManagerDetailRequest

type DescribeMNPManagerDetailRequest struct {
	*tchttp.BaseRequest

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDescribeMNPManagerDetailRequest

func NewDescribeMNPManagerDetailRequest() (request *DescribeMNPManagerDetailRequest)

func (*DescribeMNPManagerDetailRequest) FromJsonString

func (r *DescribeMNPManagerDetailRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeMNPManagerDetailRequest) ToJsonString

func (r *DescribeMNPManagerDetailRequest) ToJsonString() string

type DescribeMNPManagerDetailRequestParams

type DescribeMNPManagerDetailRequestParams struct {
	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DescribeMNPManagerDetailResponse

type DescribeMNPManagerDetailResponse struct {
	*tchttp.BaseResponse
	Response *DescribeMNPManagerDetailResponseParams `json:"Response"`
}

func NewDescribeMNPManagerDetailResponse

func NewDescribeMNPManagerDetailResponse() (response *DescribeMNPManagerDetailResponse)

func (*DescribeMNPManagerDetailResponse) FromJsonString

func (r *DescribeMNPManagerDetailResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeMNPManagerDetailResponse) ToJsonString

func (r *DescribeMNPManagerDetailResponse) ToJsonString() string

type DescribeMNPManagerDetailResponseParams

type DescribeMNPManagerDetailResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *DescribeMNPManagerDetailData `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeMNPManagerListData

type DescribeMNPManagerListData struct {
	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Mini program icon
	MNPIcon *string `json:"MNPIcon,omitnil,omitempty" name:"MNPIcon"`

	// Mini program name
	MNPName *string `json:"MNPName,omitnil,omitempty" name:"MNPName"`

	// Team name
	TeamName *string `json:"TeamName,omitnil,omitempty" name:"TeamName"`

	// Access status 1-Not accessed 2-Accessed
	AccessStatus *int64 `json:"AccessStatus,omitnil,omitempty" name:"AccessStatus"`

	// Mini program release status. 1: Released; 2: Removed
	// Note: This field may return null, indicating that no valid values can be obtained.
	Status *int64 `json:"Status,omitnil,omitempty" name:"Status"`
}

type DescribeMNPManagerListRequest

type DescribeMNPManagerListRequest struct {
	*tchttp.BaseRequest

	// Page offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Keywords for search (mini program name)
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`
}

func NewDescribeMNPManagerListRequest

func NewDescribeMNPManagerListRequest() (request *DescribeMNPManagerListRequest)

func (*DescribeMNPManagerListRequest) FromJsonString

func (r *DescribeMNPManagerListRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeMNPManagerListRequest) ToJsonString

func (r *DescribeMNPManagerListRequest) ToJsonString() string

type DescribeMNPManagerListRequestParams

type DescribeMNPManagerListRequestParams struct {
	// Page offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Keywords for search (mini program name)
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`
}

Predefined struct for user

type DescribeMNPManagerListResp

type DescribeMNPManagerListResp struct {
	// Total number of entries
	// Note: This field may return null, indicating that no valid values can be obtained.
	TotalCount *int64 `json:"TotalCount,omitnil,omitempty" name:"TotalCount"`

	// List information
	// Note: This field may return null, indicating that no valid values can be obtained.
	DataList []*DescribeMNPManagerListData `json:"DataList,omitnil,omitempty" name:"DataList"`
}

type DescribeMNPManagerListResponse

type DescribeMNPManagerListResponse struct {
	*tchttp.BaseResponse
	Response *DescribeMNPManagerListResponseParams `json:"Response"`
}

func NewDescribeMNPManagerListResponse

func NewDescribeMNPManagerListResponse() (response *DescribeMNPManagerListResponse)

func (*DescribeMNPManagerListResponse) FromJsonString

func (r *DescribeMNPManagerListResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeMNPManagerListResponse) ToJsonString

func (r *DescribeMNPManagerListResponse) ToJsonString() string

type DescribeMNPManagerListResponseParams

type DescribeMNPManagerListResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *DescribeMNPManagerListResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeMNPPrivacyRequest

type DescribeMNPPrivacyRequest struct {
	*tchttp.BaseRequest

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDescribeMNPPrivacyRequest

func NewDescribeMNPPrivacyRequest() (request *DescribeMNPPrivacyRequest)

func (*DescribeMNPPrivacyRequest) FromJsonString

func (r *DescribeMNPPrivacyRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeMNPPrivacyRequest) ToJsonString

func (r *DescribeMNPPrivacyRequest) ToJsonString() string

type DescribeMNPPrivacyRequestParams

type DescribeMNPPrivacyRequestParams struct {
	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DescribeMNPPrivacyResponse

type DescribeMNPPrivacyResponse struct {
	*tchttp.BaseResponse
	Response *DescribeMNPPrivacyResponseParams `json:"Response"`
}

func NewDescribeMNPPrivacyResponse

func NewDescribeMNPPrivacyResponse() (response *DescribeMNPPrivacyResponse)

func (*DescribeMNPPrivacyResponse) FromJsonString

func (r *DescribeMNPPrivacyResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeMNPPrivacyResponse) ToJsonString

func (r *DescribeMNPPrivacyResponse) ToJsonString() string

type DescribeMNPPrivacyResponseParams

type DescribeMNPPrivacyResponseParams struct {
	// Response data
	Data *string `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeMNPTypeRequest

type DescribeMNPTypeRequest struct {
	*tchttp.BaseRequest

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDescribeMNPTypeRequest

func NewDescribeMNPTypeRequest() (request *DescribeMNPTypeRequest)

func (*DescribeMNPTypeRequest) FromJsonString

func (r *DescribeMNPTypeRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeMNPTypeRequest) ToJsonString

func (r *DescribeMNPTypeRequest) ToJsonString() string

type DescribeMNPTypeRequestParams

type DescribeMNPTypeRequestParams struct {
	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DescribeMNPTypeResponse

type DescribeMNPTypeResponse struct {
	*tchttp.BaseResponse
	Response *DescribeMNPTypeResponseParams `json:"Response"`
}

func NewDescribeMNPTypeResponse

func NewDescribeMNPTypeResponse() (response *DescribeMNPTypeResponse)

func (*DescribeMNPTypeResponse) FromJsonString

func (r *DescribeMNPTypeResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeMNPTypeResponse) ToJsonString

func (r *DescribeMNPTypeResponse) ToJsonString() string

type DescribeMNPTypeResponseParams

type DescribeMNPTypeResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data []*MNPTypeDefine `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeMNPVersionCompileTaskExtInfo

type DescribeMNPVersionCompileTaskExtInfo struct {
	// TCMPP error message
	// Note: This field may return null, indicating that no valid values can be obtained.
	TCMPPErrMsg *string `json:"TCMPPErrMsg,omitnil,omitempty" name:"TCMPPErrMsg"`

	// WX Error Message
	// Note: This field may return null, indicating that no valid values can be obtained.
	WXErrMsg *string `json:"WXErrMsg,omitnil,omitempty" name:"WXErrMsg"`

	// WeChat QR code
	// Note: This field may return null, indicating that no valid values can be obtained.
	WXQrCode *string `json:"WXQrCode,omitnil,omitempty" name:"WXQrCode"`

	// Compile size Information
	// Note: This field may return null, indicating that no valid values can be obtained.
	SizeInfo *string `json:"SizeInfo,omitnil,omitempty" name:"SizeInfo"`
}

type DescribeMNPVersionCompileTaskResp

type DescribeMNPVersionCompileTaskResp struct {
	// Mini program ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Task ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	TaskId *string `json:"TaskId,omitnil,omitempty" name:"TaskId"`

	// 1: Pending; 20: Running; 30: Failed; 60: Succeeded
	// Note: This field may return null, indicating that no valid values can be obtained.
	TaskStatus *int64 `json:"TaskStatus,omitnil,omitempty" name:"TaskStatus"`

	// Task status message
	// Note: This field may return null, indicating that no valid values can be obtained.
	TaskMsg *string `json:"TaskMsg,omitnil,omitempty" name:"TaskMsg"`

	// QR code address
	// Note: This field may return null, indicating that no valid values can be obtained.
	QrCodeUrl *string `json:"QrCodeUrl,omitnil,omitempty" name:"QrCodeUrl"`

	// Packet size
	// Note: This field may return null, indicating that no valid values can be obtained.
	PkgSize *int64 `json:"PkgSize,omitnil,omitempty" name:"PkgSize"`

	// Subpackage information
	// Note: This field may return null, indicating that no valid values can be obtained.
	SubPkgInfos []*DescribeMNPVersionCompileTaskSubSimpleInfo `json:"SubPkgInfos,omitnil,omitempty" name:"SubPkgInfos"`

	// QR code content
	// Note: This field may return null, indicating that no valid values can be obtained.
	QrCodeContent *string `json:"QrCodeContent,omitnil,omitempty" name:"QrCodeContent"`

	// Additional information
	// Note: This field may return null, indicating that no valid values can be obtained.
	ExtInfo *DescribeMNPVersionCompileTaskExtInfo `json:"ExtInfo,omitnil,omitempty" name:"ExtInfo"`
}

type DescribeMNPVersionCompileTaskSubSimpleInfo

type DescribeMNPVersionCompileTaskSubSimpleInfo struct {
	// Name
	// Note: This field may return null, indicating that no valid values can be obtained.
	PkgName *string `json:"PkgName,omitnil,omitempty" name:"PkgName"`

	// Prefix of the package name
	// Note: This field may return null, indicating that no valid values can be obtained.
	PathPrefix *string `json:"PathPrefix,omitnil,omitempty" name:"PathPrefix"`

	// Package size in bytes
	// Note: This field may return null, indicating that no valid values can be obtained.
	PkgSize *int64 `json:"PkgSize,omitnil,omitempty" name:"PkgSize"`
}

type DescribeMNPVersionPreviewRequest

type DescribeMNPVersionPreviewRequest struct {
	*tchttp.BaseRequest

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Mini program version ID
	MNPVersionId *int64 `json:"MNPVersionId,omitnil,omitempty" name:"MNPVersionId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDescribeMNPVersionPreviewRequest

func NewDescribeMNPVersionPreviewRequest() (request *DescribeMNPVersionPreviewRequest)

func (*DescribeMNPVersionPreviewRequest) FromJsonString

func (r *DescribeMNPVersionPreviewRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeMNPVersionPreviewRequest) ToJsonString

func (r *DescribeMNPVersionPreviewRequest) ToJsonString() string

type DescribeMNPVersionPreviewRequestParams

type DescribeMNPVersionPreviewRequestParams struct {
	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Mini program version ID
	MNPVersionId *int64 `json:"MNPVersionId,omitnil,omitempty" name:"MNPVersionId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DescribeMNPVersionPreviewResponse

type DescribeMNPVersionPreviewResponse struct {
	*tchttp.BaseResponse
	Response *DescribeMNPVersionPreviewResponseParams `json:"Response"`
}

func NewDescribeMNPVersionPreviewResponse

func NewDescribeMNPVersionPreviewResponse() (response *DescribeMNPVersionPreviewResponse)

func (*DescribeMNPVersionPreviewResponse) FromJsonString

func (r *DescribeMNPVersionPreviewResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeMNPVersionPreviewResponse) ToJsonString

func (r *DescribeMNPVersionPreviewResponse) ToJsonString() string

type DescribeMNPVersionPreviewResponseParams

type DescribeMNPVersionPreviewResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *DescribeShowCaseResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeOfflineMNPPackageRequest

type DescribeOfflineMNPPackageRequest struct {
	*tchttp.BaseRequest

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDescribeOfflineMNPPackageRequest

func NewDescribeOfflineMNPPackageRequest() (request *DescribeOfflineMNPPackageRequest)

func (*DescribeOfflineMNPPackageRequest) FromJsonString

func (r *DescribeOfflineMNPPackageRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeOfflineMNPPackageRequest) ToJsonString

func (r *DescribeOfflineMNPPackageRequest) ToJsonString() string

type DescribeOfflineMNPPackageRequestParams

type DescribeOfflineMNPPackageRequestParams struct {
	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DescribeOfflineMNPPackageResponse

type DescribeOfflineMNPPackageResponse struct {
	*tchttp.BaseResponse
	Response *DescribeOfflineMNPPackageResponseParams `json:"Response"`
}

func NewDescribeOfflineMNPPackageResponse

func NewDescribeOfflineMNPPackageResponse() (response *DescribeOfflineMNPPackageResponse)

func (*DescribeOfflineMNPPackageResponse) FromJsonString

func (r *DescribeOfflineMNPPackageResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeOfflineMNPPackageResponse) ToJsonString

func (r *DescribeOfflineMNPPackageResponse) ToJsonString() string

type DescribeOfflineMNPPackageResponseParams

type DescribeOfflineMNPPackageResponseParams struct {
	// Response data
	Data *StringData `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeOnlineVersionRequest

type DescribeOnlineVersionRequest struct {
	*tchttp.BaseRequest

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDescribeOnlineVersionRequest

func NewDescribeOnlineVersionRequest() (request *DescribeOnlineVersionRequest)

func (*DescribeOnlineVersionRequest) FromJsonString

func (r *DescribeOnlineVersionRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeOnlineVersionRequest) ToJsonString

func (r *DescribeOnlineVersionRequest) ToJsonString() string

type DescribeOnlineVersionRequestParams

type DescribeOnlineVersionRequestParams struct {
	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DescribeOnlineVersionResponse

type DescribeOnlineVersionResponse struct {
	*tchttp.BaseResponse
	Response *DescribeOnlineVersionResponseParams `json:"Response"`
}

func NewDescribeOnlineVersionResponse

func NewDescribeOnlineVersionResponse() (response *DescribeOnlineVersionResponse)

func (*DescribeOnlineVersionResponse) FromJsonString

func (r *DescribeOnlineVersionResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeOnlineVersionResponse) ToJsonString

func (r *DescribeOnlineVersionResponse) ToJsonString() string

type DescribeOnlineVersionResponseParams

type DescribeOnlineVersionResponseParams struct {
	// Response data
	Data *DescribeRevertOnlineVersionPageResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeRevertOnlineVersionPageResp

type DescribeRevertOnlineVersionPageResp struct {
	// Total number of entries
	// Note: This field may return null, indicating that no valid values can be obtained.
	TotalCount *int64 `json:"TotalCount,omitnil,omitempty" name:"TotalCount"`

	// List information
	// Note: This field may return null, indicating that no valid values can be obtained.
	DataList []*QueryOnlineVersionResp `json:"DataList,omitnil,omitempty" name:"DataList"`
}

type DescribeRoleDetailRequest

type DescribeRoleDetailRequest struct {
	*tchttp.BaseRequest

	// Role ID
	RoleId *int64 `json:"RoleId,omitnil,omitempty" name:"RoleId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDescribeRoleDetailRequest

func NewDescribeRoleDetailRequest() (request *DescribeRoleDetailRequest)

func (*DescribeRoleDetailRequest) FromJsonString

func (r *DescribeRoleDetailRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeRoleDetailRequest) ToJsonString

func (r *DescribeRoleDetailRequest) ToJsonString() string

type DescribeRoleDetailRequestParams

type DescribeRoleDetailRequestParams struct {
	// Role ID
	RoleId *int64 `json:"RoleId,omitnil,omitempty" name:"RoleId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DescribeRoleDetailResp

type DescribeRoleDetailResp struct {
	// Role ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	RoleId *int64 `json:"RoleId,omitnil,omitempty" name:"RoleId"`

	// Role name
	// Note: This field may return null, indicating that no valid values can be obtained.
	RoleName *string `json:"RoleName,omitnil,omitempty" name:"RoleName"`

	// Team ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Team name
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamName *string `json:"TeamName,omitnil,omitempty" name:"TeamName"`

	// Accessible menu list
	// Note: This field may return null, indicating that no valid values can be obtained.
	ResourceIds []*string `json:"ResourceIds,omitnil,omitempty" name:"ResourceIds"`
}

type DescribeRoleDetailResponse

type DescribeRoleDetailResponse struct {
	*tchttp.BaseResponse
	Response *DescribeRoleDetailResponseParams `json:"Response"`
}

func NewDescribeRoleDetailResponse

func NewDescribeRoleDetailResponse() (response *DescribeRoleDetailResponse)

func (*DescribeRoleDetailResponse) FromJsonString

func (r *DescribeRoleDetailResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeRoleDetailResponse) ToJsonString

func (r *DescribeRoleDetailResponse) ToJsonString() string

type DescribeRoleDetailResponseParams

type DescribeRoleDetailResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *DescribeRoleDetailResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeRoleListData

type DescribeRoleListData struct {
	// Role ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	RoleId *int64 `json:"RoleId,omitnil,omitempty" name:"RoleId"`

	// Role name
	// Note: This field may return null, indicating that no valid values can be obtained.
	RoleName *string `json:"RoleName,omitnil,omitempty" name:"RoleName"`

	// Team name
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamName *string `json:"TeamName,omitnil,omitempty" name:"TeamName"`

	// Creation time
	// Note: This field may return null, indicating that no valid values can be obtained.
	CreateTime *string `json:"CreateTime,omitnil,omitempty" name:"CreateTime"`

	// Role type 1-Preset role 2-Custom role
	// Note: This field may return null, indicating that no valid values can be obtained.
	RoleType *int64 `json:"RoleType,omitnil,omitempty" name:"RoleType"`
}

type DescribeRoleListRequest

type DescribeRoleListRequest struct {
	*tchttp.BaseRequest

	// Page offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Keywords for search (role name)
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`
}

func NewDescribeRoleListRequest

func NewDescribeRoleListRequest() (request *DescribeRoleListRequest)

func (*DescribeRoleListRequest) FromJsonString

func (r *DescribeRoleListRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeRoleListRequest) ToJsonString

func (r *DescribeRoleListRequest) ToJsonString() string

type DescribeRoleListRequestParams

type DescribeRoleListRequestParams struct {
	// Page offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Keywords for search (role name)
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`
}

Predefined struct for user

type DescribeRoleListResp

type DescribeRoleListResp struct {
	// Total number of entries
	// Note: This field may return null, indicating that no valid values can be obtained.
	TotalCount *int64 `json:"TotalCount,omitnil,omitempty" name:"TotalCount"`

	// List data
	// Note: This field may return null, indicating that no valid values can be obtained.
	DataList []*DescribeRoleListData `json:"DataList,omitnil,omitempty" name:"DataList"`
}

type DescribeRoleListResponse

type DescribeRoleListResponse struct {
	*tchttp.BaseResponse
	Response *DescribeRoleListResponseParams `json:"Response"`
}

func NewDescribeRoleListResponse

func NewDescribeRoleListResponse() (response *DescribeRoleListResponse)

func (*DescribeRoleListResponse) FromJsonString

func (r *DescribeRoleListResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeRoleListResponse) ToJsonString

func (r *DescribeRoleListResponse) ToJsonString() string

type DescribeRoleListResponseParams

type DescribeRoleListResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *DescribeRoleListResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeSensitiveAPIAuditListRequest

type DescribeSensitiveAPIAuditListRequest struct {
	*tchttp.BaseRequest

	// Page offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Status list
	AuditStatusList []*int64 `json:"AuditStatusList,omitnil,omitempty" name:"AuditStatusList"`

	// Keywords for search (API name or API method or app name)
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`
}

func NewDescribeSensitiveAPIAuditListRequest

func NewDescribeSensitiveAPIAuditListRequest() (request *DescribeSensitiveAPIAuditListRequest)

func (*DescribeSensitiveAPIAuditListRequest) FromJsonString

func (r *DescribeSensitiveAPIAuditListRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeSensitiveAPIAuditListRequest) ToJsonString

func (r *DescribeSensitiveAPIAuditListRequest) ToJsonString() string

type DescribeSensitiveAPIAuditListRequestParams

type DescribeSensitiveAPIAuditListRequestParams struct {
	// Page offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Status list
	AuditStatusList []*int64 `json:"AuditStatusList,omitnil,omitempty" name:"AuditStatusList"`

	// Keywords for search (API name or API method or app name)
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`
}

Predefined struct for user

type DescribeSensitiveAPIAuditListResponse

type DescribeSensitiveAPIAuditListResponse struct {
	*tchttp.BaseResponse
	Response *DescribeSensitiveAPIAuditListResponseParams `json:"Response"`
}

func NewDescribeSensitiveAPIAuditListResponse

func NewDescribeSensitiveAPIAuditListResponse() (response *DescribeSensitiveAPIAuditListResponse)

func (*DescribeSensitiveAPIAuditListResponse) FromJsonString

func (r *DescribeSensitiveAPIAuditListResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeSensitiveAPIAuditListResponse) ToJsonString

type DescribeSensitiveAPIAuditListResponseParams

type DescribeSensitiveAPIAuditListResponseParams struct {
	// Response data
	Data *SensitiveApiAuditInfoPageResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeSensitiveAPIListRequest

type DescribeSensitiveAPIListRequest struct {
	*tchttp.BaseRequest

	// Page offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Keywords for search (API name or method)
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Application ID
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`
}

func NewDescribeSensitiveAPIListRequest

func NewDescribeSensitiveAPIListRequest() (request *DescribeSensitiveAPIListRequest)

func (*DescribeSensitiveAPIListRequest) FromJsonString

func (r *DescribeSensitiveAPIListRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeSensitiveAPIListRequest) ToJsonString

func (r *DescribeSensitiveAPIListRequest) ToJsonString() string

type DescribeSensitiveAPIListRequestParams

type DescribeSensitiveAPIListRequestParams struct {
	// Page offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Keywords for search (API name or method)
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Application ID
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`
}

Predefined struct for user

type DescribeSensitiveAPIListResponse

type DescribeSensitiveAPIListResponse struct {
	*tchttp.BaseResponse
	Response *DescribeSensitiveAPIListResponseParams `json:"Response"`
}

func NewDescribeSensitiveAPIListResponse

func NewDescribeSensitiveAPIListResponse() (response *DescribeSensitiveAPIListResponse)

func (*DescribeSensitiveAPIListResponse) FromJsonString

func (r *DescribeSensitiveAPIListResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeSensitiveAPIListResponse) ToJsonString

func (r *DescribeSensitiveAPIListResponse) ToJsonString() string

type DescribeSensitiveAPIListResponseParams

type DescribeSensitiveAPIListResponseParams struct {
	// Response data
	Data *SensitiveApiPageInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeSensitiveApiApplyDetail

type DescribeSensitiveApiApplyDetail struct {
	// API ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	APIId *string `json:"APIId,omitnil,omitempty" name:"APIId"`

	// API request method
	// Note: This field may return null, indicating that no valid values can be obtained.
	APIMethod *string `json:"APIMethod,omitnil,omitempty" name:"APIMethod"`

	// Reason for application
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplyReason *string `json:"ApplyReason,omitnil,omitempty" name:"ApplyReason"`

	// Reason for rejection
	// Note: This field may return null, indicating that no valid values can be obtained.
	RejectReason *string `json:"RejectReason,omitnil,omitempty" name:"RejectReason"`

	// Approval status
	// Note: This field may return null, indicating that no valid values can be obtained.
	AuditStatus *int64 `json:"AuditStatus,omitnil,omitempty" name:"AuditStatus"`

	// API function description
	// Note: This field may return null, indicating that no valid values can be obtained.
	APIDesc *string `json:"APIDesc,omitnil,omitempty" name:"APIDesc"`

	// API type. 1: System; 2: Custom
	// Note: This field may return null, indicating that no valid values can be obtained.
	APIType *int64 `json:"APIType,omitnil,omitempty" name:"APIType"`
}

type DescribeSensitiveApiApplyDetailRequest

type DescribeSensitiveApiApplyDetailRequest struct {
	*tchttp.BaseRequest

	// Approval ticket ID
	AuditNo *string `json:"AuditNo,omitnil,omitempty" name:"AuditNo"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDescribeSensitiveApiApplyDetailRequest

func NewDescribeSensitiveApiApplyDetailRequest() (request *DescribeSensitiveApiApplyDetailRequest)

func (*DescribeSensitiveApiApplyDetailRequest) FromJsonString

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeSensitiveApiApplyDetailRequest) ToJsonString

type DescribeSensitiveApiApplyDetailRequestParams

type DescribeSensitiveApiApplyDetailRequestParams struct {
	// Approval ticket ID
	AuditNo *string `json:"AuditNo,omitnil,omitempty" name:"AuditNo"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DescribeSensitiveApiApplyDetailResponse

type DescribeSensitiveApiApplyDetailResponse struct {
	*tchttp.BaseResponse
	Response *DescribeSensitiveApiApplyDetailResponseParams `json:"Response"`
}

func NewDescribeSensitiveApiApplyDetailResponse

func NewDescribeSensitiveApiApplyDetailResponse() (response *DescribeSensitiveApiApplyDetailResponse)

func (*DescribeSensitiveApiApplyDetailResponse) FromJsonString

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeSensitiveApiApplyDetailResponse) ToJsonString

type DescribeSensitiveApiApplyDetailResponseParams

type DescribeSensitiveApiApplyDetailResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *DescribeSensitiveApiApplyDetail `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeSensitiveApiAuthListParam

type DescribeSensitiveApiAuthListParam struct {
	// API ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	APIId *string `json:"APIId,omitnil,omitempty" name:"APIId"`

	// API name
	// Note: This field may return null, indicating that no valid values can be obtained.
	APIName *string `json:"APIName,omitnil,omitempty" name:"APIName"`

	// API method
	// Note: This field may return null, indicating that no valid values can be obtained.
	APIMethod *string `json:"APIMethod,omitnil,omitempty" name:"APIMethod"`

	// API status
	// Note: This field may return null, indicating that no valid values can be obtained.
	APIStatus *int64 `json:"APIStatus,omitnil,omitempty" name:"APIStatus"`

	// API application status
	// Note: This field may return null, indicating that no valid values can be obtained.
	APIApplyStatus *int64 `json:"APIApplyStatus,omitnil,omitempty" name:"APIApplyStatus"`

	// Reason for rejection
	// Note: This field may return null, indicating that no valid values can be obtained.
	RejectReason *string `json:"RejectReason,omitnil,omitempty" name:"RejectReason"`

	// Approval ticket ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	AuditNo *string `json:"AuditNo,omitnil,omitempty" name:"AuditNo"`

	// Application ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// Application icon
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationIcon *string `json:"ApplicationIcon,omitnil,omitempty" name:"ApplicationIcon"`

	// Application name
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationName *string `json:"ApplicationName,omitnil,omitempty" name:"ApplicationName"`

	// API type 1 - System API 2 - Custom API
	// Note: This field may return null, indicating that no valid values can be obtained.
	APIType *int64 `json:"APIType,omitnil,omitempty" name:"APIType"`

	// API feature description
	// Note: This field may return null, indicating that no valid values can be obtained.
	APIDesc *string `json:"APIDesc,omitnil,omitempty" name:"APIDesc"`
}

type DescribeSensitiveApiAuthListRequest

type DescribeSensitiveApiAuthListRequest struct {
	*tchttp.BaseRequest

	// Page offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Application ID
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// Keywords for search (API name)
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`
}

func NewDescribeSensitiveApiAuthListRequest

func NewDescribeSensitiveApiAuthListRequest() (request *DescribeSensitiveApiAuthListRequest)

func (*DescribeSensitiveApiAuthListRequest) FromJsonString

func (r *DescribeSensitiveApiAuthListRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeSensitiveApiAuthListRequest) ToJsonString

func (r *DescribeSensitiveApiAuthListRequest) ToJsonString() string

type DescribeSensitiveApiAuthListRequestParams

type DescribeSensitiveApiAuthListRequestParams struct {
	// Page offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Application ID
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// Keywords for search (API name)
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`
}

Predefined struct for user

type DescribeSensitiveApiAuthListResponse

type DescribeSensitiveApiAuthListResponse struct {
	*tchttp.BaseResponse
	Response *DescribeSensitiveApiAuthListResponseParams `json:"Response"`
}

func NewDescribeSensitiveApiAuthListResponse

func NewDescribeSensitiveApiAuthListResponse() (response *DescribeSensitiveApiAuthListResponse)

func (*DescribeSensitiveApiAuthListResponse) FromJsonString

func (r *DescribeSensitiveApiAuthListResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeSensitiveApiAuthListResponse) ToJsonString

func (r *DescribeSensitiveApiAuthListResponse) ToJsonString() string

type DescribeSensitiveApiAuthListResponseParams

type DescribeSensitiveApiAuthListResponseParams struct {
	// Response parameters
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *DescribeSensitiveApiAuthPageParam `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeSensitiveApiAuthPageParam

type DescribeSensitiveApiAuthPageParam struct {
	// Total number of entries
	// Note: This field may return null, indicating that no valid values can be obtained.
	TotalCount *int64 `json:"TotalCount,omitnil,omitempty" name:"TotalCount"`

	// List data
	// Note: This field may return null, indicating that no valid values can be obtained.
	DataList []*DescribeSensitiveApiAuthListParam `json:"DataList,omitnil,omitempty" name:"DataList"`
}

type DescribeShowCaseResp

type DescribeShowCaseResp struct {
	// Mini program ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Mini program name
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPName *string `json:"MNPName,omitnil,omitempty" name:"MNPName"`

	// Mini program description
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPDesc *string `json:"MNPDesc,omitnil,omitempty" name:"MNPDesc"`

	// Mini program version
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPVersion *string `json:"MNPVersion,omitnil,omitempty" name:"MNPVersion"`

	// Mini program introduction
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPVersionIntro *string `json:"MNPVersionIntro,omitnil,omitempty" name:"MNPVersionIntro"`

	// Mini program QR code
	// Note: This field may return null, indicating that no valid values can be obtained.
	QRCodeUrl *string `json:"QRCodeUrl,omitnil,omitempty" name:"QRCodeUrl"`

	// Application information
	// Note: This field may return null, indicating that no valid values can be obtained.
	AppList []*ShowCaseRelAppInfo `json:"AppList,omitnil,omitempty" name:"AppList"`

	// Path to the demo
	// Note: This field may return null, indicating that no valid values can be obtained.
	TestEntrancePath *string `json:"TestEntrancePath,omitnil,omitempty" name:"TestEntrancePath"`
}

type DescribeSimpleApplicationInfoListRequest

type DescribeSimpleApplicationInfoListRequest struct {
	*tchttp.BaseRequest

	// Pagination offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Query keywords (application name)
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`

	// Whether TCMPP Assistant is loaded
	LoadAssistantApp *bool `json:"LoadAssistantApp,omitnil,omitempty" name:"LoadAssistantApp"`

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`
}

func NewDescribeSimpleApplicationInfoListRequest

func NewDescribeSimpleApplicationInfoListRequest() (request *DescribeSimpleApplicationInfoListRequest)

func (*DescribeSimpleApplicationInfoListRequest) FromJsonString

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeSimpleApplicationInfoListRequest) ToJsonString

type DescribeSimpleApplicationInfoListRequestParams

type DescribeSimpleApplicationInfoListRequestParams struct {
	// Pagination offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Query keywords (application name)
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`

	// Whether TCMPP Assistant is loaded
	LoadAssistantApp *bool `json:"LoadAssistantApp,omitnil,omitempty" name:"LoadAssistantApp"`

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`
}

Predefined struct for user

type DescribeSimpleApplicationInfoListResponse

type DescribeSimpleApplicationInfoListResponse struct {
	*tchttp.BaseResponse
	Response *DescribeSimpleApplicationInfoListResponseParams `json:"Response"`
}

func NewDescribeSimpleApplicationInfoListResponse

func NewDescribeSimpleApplicationInfoListResponse() (response *DescribeSimpleApplicationInfoListResponse)

func (*DescribeSimpleApplicationInfoListResponse) FromJsonString

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeSimpleApplicationInfoListResponse) ToJsonString

type DescribeSimpleApplicationInfoListResponseParams

type DescribeSimpleApplicationInfoListResponseParams struct {
	// Response data
	Data *ApplicationSimpleListInfoResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeSimpleTeamListRequest

type DescribeSimpleTeamListRequest struct {
	*tchttp.BaseRequest

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Team permission type 1. Mini program management 2 Application management
	TeamRoleTypeList []*int64 `json:"TeamRoleTypeList,omitnil,omitempty" name:"TeamRoleTypeList"`
}

func NewDescribeSimpleTeamListRequest

func NewDescribeSimpleTeamListRequest() (request *DescribeSimpleTeamListRequest)

func (*DescribeSimpleTeamListRequest) FromJsonString

func (r *DescribeSimpleTeamListRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeSimpleTeamListRequest) ToJsonString

func (r *DescribeSimpleTeamListRequest) ToJsonString() string

type DescribeSimpleTeamListRequestParams

type DescribeSimpleTeamListRequestParams struct {
	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Team permission type 1. Mini program management 2 Application management
	TeamRoleTypeList []*int64 `json:"TeamRoleTypeList,omitnil,omitempty" name:"TeamRoleTypeList"`
}

Predefined struct for user

type DescribeSimpleTeamListResp

type DescribeSimpleTeamListResp struct {
	// Total number of entries
	// Note: This field may return null, indicating that no valid values can be obtained.
	TotalCount *int64 `json:"TotalCount,omitnil,omitempty" name:"TotalCount"`

	// List information
	// Note: This field may return null, indicating that no valid values can be obtained.
	DataList []*SimpleStringKeyValue `json:"DataList,omitnil,omitempty" name:"DataList"`
}

type DescribeSimpleTeamListResponse

type DescribeSimpleTeamListResponse struct {
	*tchttp.BaseResponse
	Response *DescribeSimpleTeamListResponseParams `json:"Response"`
}

func NewDescribeSimpleTeamListResponse

func NewDescribeSimpleTeamListResponse() (response *DescribeSimpleTeamListResponse)

func (*DescribeSimpleTeamListResponse) FromJsonString

func (r *DescribeSimpleTeamListResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeSimpleTeamListResponse) ToJsonString

func (r *DescribeSimpleTeamListResponse) ToJsonString() string

type DescribeSimpleTeamListResponseParams

type DescribeSimpleTeamListResponseParams struct {
	// Response data
	Data *DescribeSimpleTeamListResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeTeamDetailResp

type DescribeTeamDetailResp struct {
	// Team name
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamName *string `json:"TeamName,omitnil,omitempty" name:"TeamName"`

	// Team role type 1-Mini program team 2-Application team
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamRoleType *int64 `json:"TeamRoleType,omitnil,omitempty" name:"TeamRoleType"`

	// Admin account
	// Note: This field may return null, indicating that no valid values can be obtained.
	AdminUserAccount *string `json:"AdminUserAccount,omitnil,omitempty" name:"AdminUserAccount"`

	// Creator
	// Note: This field may return null, indicating that no valid values can be obtained.
	CreateUser *string `json:"CreateUser,omitnil,omitempty" name:"CreateUser"`

	// Creation time
	// Note: This field may return null, indicating that no valid values can be obtained.
	CreateTime *string `json:"CreateTime,omitnil,omitempty" name:"CreateTime"`

	// Number of team members
	// Note: This field may return null, indicating that no valid values can be obtained.
	MemberCount *int64 `json:"MemberCount,omitnil,omitempty" name:"MemberCount"`

	// Number of bound mini program teams
	// Note: This field may return null, indicating that no valid values can be obtained.
	BindMiniTeamCount *int64 `json:"BindMiniTeamCount,omitnil,omitempty" name:"BindMiniTeamCount"`

	// Name of the bound team
	BindTeamName *string `json:"BindTeamName,omitnil,omitempty" name:"BindTeamName"`

	// Team registration link
	RegisterLink *string `json:"RegisterLink,omitnil,omitempty" name:"RegisterLink"`
}

type DescribeTeamDomainListInfoResp

type DescribeTeamDomainListInfoResp struct {
	// Domain ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	DomainId *int64 `json:"DomainId,omitnil,omitempty" name:"DomainId"`

	// Mini program ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Mini program name
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPName *string `json:"MNPName,omitnil,omitempty" name:"MNPName"`

	// Domain name
	// Note: This field may return null, indicating that no valid values can be obtained.
	DomainUrl *string `json:"DomainUrl,omitnil,omitempty" name:"DomainUrl"`

	// Type
	// Note: This field may return null, indicating that no valid values can be obtained.
	DomainType *int64 `json:"DomainType,omitnil,omitempty" name:"DomainType"`

	// Domain name status. 1: Normal; 2: Disabled
	// Note: This field may return null, indicating that no valid values can be obtained.
	Status *int64 `json:"Status,omitnil,omitempty" name:"Status"`

	// Creator
	// Note: This field may return null, indicating that no valid values can be obtained.
	CreateUser *string `json:"CreateUser,omitnil,omitempty" name:"CreateUser"`

	// The creation time.
	// Note: This field may return null, indicating that no valid values can be obtained.
	CreateTime *string `json:"CreateTime,omitnil,omitempty" name:"CreateTime"`
}

type DescribeTeamDomainListPageResp

type DescribeTeamDomainListPageResp struct {
	// Total number of entries
	// Note: This field may return null, indicating that no valid values can be obtained.
	TotalCount *int64 `json:"TotalCount,omitnil,omitempty" name:"TotalCount"`

	// List information
	// Note: This field may return null, indicating that no valid values can be obtained.
	DataList []*DescribeTeamDomainListInfoResp `json:"DataList,omitnil,omitempty" name:"DataList"`
}

type DescribeTeamDomainListRequest

type DescribeTeamDomainListRequest struct {
	*tchttp.BaseRequest

	// Page offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDescribeTeamDomainListRequest

func NewDescribeTeamDomainListRequest() (request *DescribeTeamDomainListRequest)

func (*DescribeTeamDomainListRequest) FromJsonString

func (r *DescribeTeamDomainListRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeTeamDomainListRequest) ToJsonString

func (r *DescribeTeamDomainListRequest) ToJsonString() string

type DescribeTeamDomainListRequestParams

type DescribeTeamDomainListRequestParams struct {
	// Page offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DescribeTeamDomainListResponse

type DescribeTeamDomainListResponse struct {
	*tchttp.BaseResponse
	Response *DescribeTeamDomainListResponseParams `json:"Response"`
}

func NewDescribeTeamDomainListResponse

func NewDescribeTeamDomainListResponse() (response *DescribeTeamDomainListResponse)

func (*DescribeTeamDomainListResponse) FromJsonString

func (r *DescribeTeamDomainListResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeTeamDomainListResponse) ToJsonString

func (r *DescribeTeamDomainListResponse) ToJsonString() string

type DescribeTeamDomainListResponseParams

type DescribeTeamDomainListResponseParams struct {
	// Response data
	Data *DescribeTeamDomainListPageResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeTeamListInfoResp

type DescribeTeamListInfoResp struct {
	// Team ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Team name
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamName *string `json:"TeamName,omitnil,omitempty" name:"TeamName"`

	// Admin ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	AdminUserId *string `json:"AdminUserId,omitnil,omitempty" name:"AdminUserId"`

	// Admin account
	// Note: This field may return null, indicating that no valid values can be obtained.
	AdminUserAccount *string `json:"AdminUserAccount,omitnil,omitempty" name:"AdminUserAccount"`

	// Admin username
	// Note: This field may return null, indicating that no valid values can be obtained.
	AdminUserName *string `json:"AdminUserName,omitnil,omitempty" name:"AdminUserName"`

	// Number of team members
	// Note: This field may return null, indicating that no valid values can be obtained.
	MemberCount *int64 `json:"MemberCount,omitnil,omitempty" name:"MemberCount"`

	// Team registration link
	RegisterLink *string `json:"RegisterLink,omitnil,omitempty" name:"RegisterLink"`

	// Team permission type
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamRoleTypeList []*int64 `json:"TeamRoleTypeList,omitnil,omitempty" name:"TeamRoleTypeList"`

	// Associated team ID
	RelatedTeamId *int64 `json:"RelatedTeamId,omitnil,omitempty" name:"RelatedTeamId"`
}

type DescribeTeamListRequest

type DescribeTeamListRequest struct {
	*tchttp.BaseRequest

	// Pagination offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Name of the team to be queried
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`
}

func NewDescribeTeamListRequest

func NewDescribeTeamListRequest() (request *DescribeTeamListRequest)

func (*DescribeTeamListRequest) FromJsonString

func (r *DescribeTeamListRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeTeamListRequest) ToJsonString

func (r *DescribeTeamListRequest) ToJsonString() string

type DescribeTeamListRequestParams

type DescribeTeamListRequestParams struct {
	// Pagination offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Name of the team to be queried
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`
}

Predefined struct for user

type DescribeTeamListResponse

type DescribeTeamListResponse struct {
	*tchttp.BaseResponse
	Response *DescribeTeamListResponseParams `json:"Response"`
}

func NewDescribeTeamListResponse

func NewDescribeTeamListResponse() (response *DescribeTeamListResponse)

func (*DescribeTeamListResponse) FromJsonString

func (r *DescribeTeamListResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeTeamListResponse) ToJsonString

func (r *DescribeTeamListResponse) ToJsonString() string

type DescribeTeamListResponseParams

type DescribeTeamListResponseParams struct {
	// Response data
	Data *DescribeTeamPageResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeTeamMemberInfoResp

type DescribeTeamMemberInfoResp struct {
	// User ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	UserId *string `json:"UserId,omitnil,omitempty" name:"UserId"`

	// User account
	// Note: This field may return null, indicating that no valid values can be obtained.
	UserAccount *string `json:"UserAccount,omitnil,omitempty" name:"UserAccount"`

	// User name
	// Note: This field may return null, indicating that no valid values can be obtained.
	UserName *string `json:"UserName,omitnil,omitempty" name:"UserName"`

	// Team ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Team name
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamName *string `json:"TeamName,omitnil,omitempty" name:"TeamName"`

	// Team role name
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamRoleName *string `json:"TeamRoleName,omitnil,omitempty" name:"TeamRoleName"`

	// Team role ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamRoleId *int64 `json:"TeamRoleId,omitnil,omitempty" name:"TeamRoleId"`

	// Editable or not
	// Note: This field may return null, indicating that no valid values can be obtained.
	CanEdit *bool `json:"CanEdit,omitnil,omitempty" name:"CanEdit"`
}

type DescribeTeamMemberListPageResp

type DescribeTeamMemberListPageResp struct {
	// Total number of results.
	// Note: This field may return null, indicating that no valid values can be obtained.
	TotalCount *int64 `json:"TotalCount,omitnil,omitempty" name:"TotalCount"`

	// List information
	// Note: This field may return null, indicating that no valid values can be obtained.
	DataList []*DescribeTeamMemberInfoResp `json:"DataList,omitnil,omitempty" name:"DataList"`
}

type DescribeTeamMemberListRequest

type DescribeTeamMemberListRequest struct {
	*tchttp.BaseRequest

	// Page offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Keywords for search (user name)
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`

	// Role ID
	RoleIds []*int64 `json:"RoleIds,omitnil,omitempty" name:"RoleIds"`
}

func NewDescribeTeamMemberListRequest

func NewDescribeTeamMemberListRequest() (request *DescribeTeamMemberListRequest)

func (*DescribeTeamMemberListRequest) FromJsonString

func (r *DescribeTeamMemberListRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeTeamMemberListRequest) ToJsonString

func (r *DescribeTeamMemberListRequest) ToJsonString() string

type DescribeTeamMemberListRequestParams

type DescribeTeamMemberListRequestParams struct {
	// Page offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Keywords for search (user name)
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`

	// Role ID
	RoleIds []*int64 `json:"RoleIds,omitnil,omitempty" name:"RoleIds"`
}

Predefined struct for user

type DescribeTeamMemberListResponse

type DescribeTeamMemberListResponse struct {
	*tchttp.BaseResponse
	Response *DescribeTeamMemberListResponseParams `json:"Response"`
}

func NewDescribeTeamMemberListResponse

func NewDescribeTeamMemberListResponse() (response *DescribeTeamMemberListResponse)

func (*DescribeTeamMemberListResponse) FromJsonString

func (r *DescribeTeamMemberListResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeTeamMemberListResponse) ToJsonString

func (r *DescribeTeamMemberListResponse) ToJsonString() string

type DescribeTeamMemberListResponseParams

type DescribeTeamMemberListResponseParams struct {
	// Response data
	Data *DescribeTeamMemberListPageResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeTeamMembersInfoPageResp

type DescribeTeamMembersInfoPageResp struct {
	// Total number of results.
	// Note: This field may return null, indicating that no valid values can be obtained.
	TotalCount *int64 `json:"TotalCount,omitnil,omitempty" name:"TotalCount"`

	// List information
	// Note: This field may return null, indicating that no valid values can be obtained.
	DataList []*DescribeTeamMembersInfoResp `json:"DataList,omitnil,omitempty" name:"DataList"`
}

type DescribeTeamMembersInfoResp

type DescribeTeamMembersInfoResp struct {
	// User ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	UserId *string `json:"UserId,omitnil,omitempty" name:"UserId"`

	// User account
	// Note: This field may return null, indicating that no valid values can be obtained.
	UserAccount *string `json:"UserAccount,omitnil,omitempty" name:"UserAccount"`

	// Username
	// Note: This field may return null, indicating that no valid values can be obtained.
	UserName *string `json:"UserName,omitnil,omitempty" name:"UserName"`

	// Role
	// Note: This field may return null, indicating that no valid values can be obtained.
	UserRoles *string `json:"UserRoles,omitnil,omitempty" name:"UserRoles"`
}

type DescribeTeamMembersRequest

type DescribeTeamMembersRequest struct {
	*tchttp.BaseRequest

	// Pagination offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDescribeTeamMembersRequest

func NewDescribeTeamMembersRequest() (request *DescribeTeamMembersRequest)

func (*DescribeTeamMembersRequest) FromJsonString

func (r *DescribeTeamMembersRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeTeamMembersRequest) ToJsonString

func (r *DescribeTeamMembersRequest) ToJsonString() string

type DescribeTeamMembersRequestParams

type DescribeTeamMembersRequestParams struct {
	// Pagination offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DescribeTeamMembersResponse

type DescribeTeamMembersResponse struct {
	*tchttp.BaseResponse
	Response *DescribeTeamMembersResponseParams `json:"Response"`
}

func NewDescribeTeamMembersResponse

func NewDescribeTeamMembersResponse() (response *DescribeTeamMembersResponse)

func (*DescribeTeamMembersResponse) FromJsonString

func (r *DescribeTeamMembersResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeTeamMembersResponse) ToJsonString

func (r *DescribeTeamMembersResponse) ToJsonString() string

type DescribeTeamMembersResponseParams

type DescribeTeamMembersResponseParams struct {
	// Response data
	Data *DescribeTeamMembersInfoPageResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeTeamPageResp

type DescribeTeamPageResp struct {
	// Total number of results.
	// Note: This field may return null, indicating that no valid values can be obtained.
	TotalCount *int64 `json:"TotalCount,omitnil,omitempty" name:"TotalCount"`

	// List information
	// Note: This field may return null, indicating that no valid values can be obtained.
	DataList []*DescribeTeamListInfoResp `json:"DataList,omitnil,omitempty" name:"DataList"`
}

type DescribeTeamRequest

type DescribeTeamRequest struct {
	*tchttp.BaseRequest

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDescribeTeamRequest

func NewDescribeTeamRequest() (request *DescribeTeamRequest)

func (*DescribeTeamRequest) FromJsonString

func (r *DescribeTeamRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeTeamRequest) ToJsonString

func (r *DescribeTeamRequest) ToJsonString() string

type DescribeTeamRequestParams

type DescribeTeamRequestParams struct {
	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DescribeTeamResponse

type DescribeTeamResponse struct {
	*tchttp.BaseResponse
	Response *DescribeTeamResponseParams `json:"Response"`
}

func NewDescribeTeamResponse

func NewDescribeTeamResponse() (response *DescribeTeamResponse)

func (*DescribeTeamResponse) FromJsonString

func (r *DescribeTeamResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeTeamResponse) ToJsonString

func (r *DescribeTeamResponse) ToJsonString() string

type DescribeTeamResponseParams

type DescribeTeamResponseParams struct {
	// Response data
	Data *DescribeTeamDetailResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeTempSecret4UploadFile2CosRequest

type DescribeTempSecret4UploadFile2CosRequest struct {
	*tchttp.BaseRequest

	// Service name
	BusinessName *string `json:"BusinessName,omitnil,omitempty" name:"BusinessName"`

	// File suffix
	Suffix *string `json:"Suffix,omitnil,omitempty" name:"Suffix"`
}

func NewDescribeTempSecret4UploadFile2CosRequest

func NewDescribeTempSecret4UploadFile2CosRequest() (request *DescribeTempSecret4UploadFile2CosRequest)

func (*DescribeTempSecret4UploadFile2CosRequest) FromJsonString

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeTempSecret4UploadFile2CosRequest) ToJsonString

type DescribeTempSecret4UploadFile2CosRequestParams

type DescribeTempSecret4UploadFile2CosRequestParams struct {
	// Service name
	BusinessName *string `json:"BusinessName,omitnil,omitempty" name:"BusinessName"`

	// File suffix
	Suffix *string `json:"Suffix,omitnil,omitempty" name:"Suffix"`
}

Predefined struct for user

type DescribeTempSecret4UploadFile2CosResponse

type DescribeTempSecret4UploadFile2CosResponse struct {
	*tchttp.BaseResponse
	Response *DescribeTempSecret4UploadFile2CosResponseParams `json:"Response"`
}

func NewDescribeTempSecret4UploadFile2CosResponse

func NewDescribeTempSecret4UploadFile2CosResponse() (response *DescribeTempSecret4UploadFile2CosResponse)

func (*DescribeTempSecret4UploadFile2CosResponse) FromJsonString

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeTempSecret4UploadFile2CosResponse) ToJsonString

type DescribeTempSecret4UploadFile2CosResponseParams

type DescribeTempSecret4UploadFile2CosResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *UploadFileTempSecret `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeUserDetailRequest

type DescribeUserDetailRequest struct {
	*tchttp.BaseRequest

	// User ID
	UserId *string `json:"UserId,omitnil,omitempty" name:"UserId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDescribeUserDetailRequest

func NewDescribeUserDetailRequest() (request *DescribeUserDetailRequest)

func (*DescribeUserDetailRequest) FromJsonString

func (r *DescribeUserDetailRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeUserDetailRequest) ToJsonString

func (r *DescribeUserDetailRequest) ToJsonString() string

type DescribeUserDetailRequestParams

type DescribeUserDetailRequestParams struct {
	// User ID
	UserId *string `json:"UserId,omitnil,omitempty" name:"UserId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DescribeUserDetailResp

type DescribeUserDetailResp struct {
	// User ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	UserId *string `json:"UserId,omitnil,omitempty" name:"UserId"`

	// User account
	// Note: This field may return null, indicating that no valid values can be obtained.
	UserAccount *string `json:"UserAccount,omitnil,omitempty" name:"UserAccount"`

	// User account
	// 1 - Super admin 2 - Platform admin 3 - Ordinary member
	// Note: This field may return null, indicating that no valid values can be obtained.
	AccountType *int64 `json:"AccountType,omitnil,omitempty" name:"AccountType"`

	// User name
	// Note: This field may return null, indicating that no valid values can be obtained.
	UserName *string `json:"UserName,omitnil,omitempty" name:"UserName"`
}

type DescribeUserDetailResponse

type DescribeUserDetailResponse struct {
	*tchttp.BaseResponse
	Response *DescribeUserDetailResponseParams `json:"Response"`
}

func NewDescribeUserDetailResponse

func NewDescribeUserDetailResponse() (response *DescribeUserDetailResponse)

func (*DescribeUserDetailResponse) FromJsonString

func (r *DescribeUserDetailResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeUserDetailResponse) ToJsonString

func (r *DescribeUserDetailResponse) ToJsonString() string

type DescribeUserDetailResponseParams

type DescribeUserDetailResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *DescribeUserDetailResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DescribeUserListData

type DescribeUserListData struct {
	// User ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	UserId *string `json:"UserId,omitnil,omitempty" name:"UserId"`

	// User account
	// Note: This field may return null, indicating that no valid values can be obtained.
	UserAccount *string `json:"UserAccount,omitnil,omitempty" name:"UserAccount"`

	// Associated team
	// Note: This field may return null, indicating that no valid values can be obtained.
	Teams *string `json:"Teams,omitnil,omitempty" name:"Teams"`

	// Account type. 1: Super administrator; 2: Platform administrator; 3: Ordinary member
	// Note: This field may return null, indicating that no valid values can be obtained.
	AccountType *int64 `json:"AccountType,omitnil,omitempty" name:"AccountType"`

	// User name
	// Note: This field may return null, indicating that no valid values can be obtained.
	UserName *string `json:"UserName,omitnil,omitempty" name:"UserName"`

	// Creation time
	// Note: This field may return null, indicating that no valid values can be obtained.
	CreateTime *string `json:"CreateTime,omitnil,omitempty" name:"CreateTime"`

	// Status. 1: Normal; 2: Disabled
	// Note: This field may return null, indicating that no valid values can be obtained.
	Status *int64 `json:"Status,omitnil,omitempty" name:"Status"`
}

type DescribeUserListRequest

type DescribeUserListRequest struct {
	*tchttp.BaseRequest

	// Page offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Keywords for search (username or account)
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`

	// User account 1 - Super Admin 2 - Platform Admin 3 - Ordinary member
	AccountType *int64 `json:"AccountType,omitnil,omitempty" name:"AccountType"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`
}

func NewDescribeUserListRequest

func NewDescribeUserListRequest() (request *DescribeUserListRequest)

func (*DescribeUserListRequest) FromJsonString

func (r *DescribeUserListRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeUserListRequest) ToJsonString

func (r *DescribeUserListRequest) ToJsonString() string

type DescribeUserListRequestParams

type DescribeUserListRequestParams struct {
	// Page offset
	Offset *int64 `json:"Offset,omitnil,omitempty" name:"Offset"`

	// Number of results per page
	Limit *int64 `json:"Limit,omitnil,omitempty" name:"Limit"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Keywords for search (username or account)
	Keyword *string `json:"Keyword,omitnil,omitempty" name:"Keyword"`

	// User account 1 - Super Admin 2 - Platform Admin 3 - Ordinary member
	AccountType *int64 `json:"AccountType,omitnil,omitempty" name:"AccountType"`

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`
}

Predefined struct for user

type DescribeUserListResp

type DescribeUserListResp struct {
	// Total number of entries
	// Note: This field may return null, indicating that no valid values can be obtained.
	TotalCount *int64 `json:"TotalCount,omitnil,omitempty" name:"TotalCount"`

	// List data
	// Note: This field may return null, indicating that no valid values can be obtained.
	DataList []*DescribeUserListData `json:"DataList,omitnil,omitempty" name:"DataList"`
}

type DescribeUserListResponse

type DescribeUserListResponse struct {
	*tchttp.BaseResponse
	Response *DescribeUserListResponseParams `json:"Response"`
}

func NewDescribeUserListResponse

func NewDescribeUserListResponse() (response *DescribeUserListResponse)

func (*DescribeUserListResponse) FromJsonString

func (r *DescribeUserListResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DescribeUserListResponse) ToJsonString

func (r *DescribeUserListResponse) ToJsonString() string

type DescribeUserListResponseParams

type DescribeUserListResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *DescribeUserListResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DisableEnterpriseDomainResp

type DisableEnterpriseDomainResp struct {
	// Result
	// Note: This field may return null, indicating that no valid values can be obtained.
	Result *bool `json:"Result,omitnil,omitempty" name:"Result"`
}

type DisableTeamDomainRequest

type DisableTeamDomainRequest struct {
	*tchttp.BaseRequest

	DomainId *int64 `json:"DomainId,omitnil,omitempty" name:"DomainId"`

	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewDisableTeamDomainRequest

func NewDisableTeamDomainRequest() (request *DisableTeamDomainRequest)

func (*DisableTeamDomainRequest) FromJsonString

func (r *DisableTeamDomainRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DisableTeamDomainRequest) ToJsonString

func (r *DisableTeamDomainRequest) ToJsonString() string

type DisableTeamDomainRequestParams

type DisableTeamDomainRequestParams struct {
	DomainId *int64 `json:"DomainId,omitnil,omitempty" name:"DomainId"`

	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type DisableTeamDomainResponse

type DisableTeamDomainResponse struct {
	*tchttp.BaseResponse
	Response *DisableTeamDomainResponseParams `json:"Response"`
}

func NewDisableTeamDomainResponse

func NewDisableTeamDomainResponse() (response *DisableTeamDomainResponse)

func (*DisableTeamDomainResponse) FromJsonString

func (r *DisableTeamDomainResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*DisableTeamDomainResponse) ToJsonString

func (r *DisableTeamDomainResponse) ToJsonString() string

type DisableTeamDomainResponseParams

type DisableTeamDomainResponseParams struct {
	Data *DisableEnterpriseDomainResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type DownloadApplicationConfigResp

type DownloadApplicationConfigResp struct {
	// Configuration information in Base64 format
	// Note: This field may return null, indicating that no valid values can be obtained.
	File *string `json:"File,omitnil,omitempty" name:"File"`
}

type GlobalDomainCheckResp

type GlobalDomainCheckResp struct {
	// List of duplicate domain names
	// Note: This field may return null, indicating that no valid values can be obtained.
	RepeatUrls []*string `json:"RepeatUrls,omitnil,omitempty" name:"RepeatUrls"`

	// List of allowed domain names
	// Note: This field may return null, indicating that no valid values can be obtained.
	ExistsWhiteUrls []*string `json:"ExistsWhiteUrls,omitnil,omitempty" name:"ExistsWhiteUrls"`

	// List of blocked domain names
	// Note: This field may return null, indicating that no valid values can be obtained.
	ExistsBlackUrls []*string `json:"ExistsBlackUrls,omitnil,omitempty" name:"ExistsBlackUrls"`
}

type GlobalDomainDeleteResp

type GlobalDomainDeleteResp struct {
	// Response result
	// Note: This field may return null, indicating that no valid values can be obtained.
	Result *bool `json:"Result,omitnil,omitempty" name:"Result"`
}

type GlobalDomainDescribeListInfoResp

type GlobalDomainDescribeListInfoResp struct {
	// Domain ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	DomainId *int64 `json:"DomainId,omitnil,omitempty" name:"DomainId"`

	// Platform ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	CustomerID *string `json:"CustomerID,omitnil,omitempty" name:"CustomerID"`

	// Domain name
	// Note: This field may return null, indicating that no valid values can be obtained.
	DomainURL *string `json:"DomainURL,omitnil,omitempty" name:"DomainURL"`

	// Type. 1: Allowed; 2: Blocked
	// Note: This field may return null, indicating that no valid values can be obtained.
	DomainType *int64 `json:"DomainType,omitnil,omitempty" name:"DomainType"`

	// Creator
	// Note: This field may return null, indicating that no valid values can be obtained.
	CreateUser *string `json:"CreateUser,omitnil,omitempty" name:"CreateUser"`

	// Creation time
	// Note: This field may return null, indicating that no valid values can be obtained.
	CreateTime *string `json:"CreateTime,omitnil,omitempty" name:"CreateTime"`

	// Updated by
	// Note: This field may return null, indicating that no valid values can be obtained.
	UpdateUser *string `json:"UpdateUser,omitnil,omitempty" name:"UpdateUser"`

	// Update date
	// Note: This field may return null, indicating that no valid values can be obtained.
	UpdateTime *string `json:"UpdateTime,omitnil,omitempty" name:"UpdateTime"`
}

type GlobalDomainDescribeListPageResp

type GlobalDomainDescribeListPageResp struct {
	// Total number of results
	// Note: This field may return null, indicating that no valid values can be obtained.
	TotalCount *int64 `json:"TotalCount,omitnil,omitempty" name:"TotalCount"`

	// Domain name information
	// Note: This field may return null, indicating that no valid values can be obtained.
	DataList []*GlobalDomainDescribeListInfoResp `json:"DataList,omitnil,omitempty" name:"DataList"`
}

type GlobalDomainModifyRespResp

type GlobalDomainModifyRespResp struct {
	// 0: Success; 1: Allowed domains exist; 2: Blocked domains exist
	// Note: This field may return null, indicating that no valid values can be obtained.
	Result *int64 `json:"Result,omitnil,omitempty" name:"Result"`
}

type MNPDetail

type MNPDetail struct {
	// Mini program type
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPType *string `json:"MNPType,omitnil,omitempty" name:"MNPType"`

	// Mini program ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Mini program name
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPName *string `json:"MNPName,omitnil,omitempty" name:"MNPName"`

	// Mini program icon
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPIcon *string `json:"MNPIcon,omitnil,omitempty" name:"MNPIcon"`

	// Mini program introduction
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPIntro *string `json:"MNPIntro,omitnil,omitempty" name:"MNPIntro"`

	// Mini program description
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPDesc *string `json:"MNPDesc,omitnil,omitempty" name:"MNPDesc"`

	// Creator account
	// Note: This field may return null, indicating that no valid values can be obtained.
	CreateUser *string `json:"CreateUser,omitnil,omitempty" name:"CreateUser"`

	// Creation time, timestamp
	// Note: This field may return null, indicating that no valid values can be obtained.
	CreateTime *int64 `json:"CreateTime,omitnil,omitempty" name:"CreateTime"`

	// Online Status 0 Not Online, 1 Online
	// Note: This field may return null, indicating that no valid values can be obtained.
	OnlineStatus *int64 `json:"OnlineStatus,omitnil,omitempty" name:"OnlineStatus"`

	// Application information
	// Note: This field may return null, indicating that no valid values can be obtained.
	Applications []*ApplicationSimpleInfo `json:"Applications,omitnil,omitempty" name:"Applications"`

	// Mini program tag
	// Note: This field may return null, indicating that no valid values can be obtained.
	Tags []*string `json:"Tags,omitnil,omitempty" name:"Tags"`

	// Mini program status 1-Released 2-Removed
	// Note: This field may return null, indicating that no valid values can be obtained.
	Status *int64 `json:"Status,omitnil,omitempty" name:"Status"`
}

type MNPTypeDefine

type MNPTypeDefine struct {
	// Mini program category name
	// Note: This field may return null, indicating that no valid values can be obtained.
	TypeName *string `json:"TypeName,omitnil,omitempty" name:"TypeName"`

	// Mini program category value
	// Note: This field may return null, indicating that no valid values can be obtained.
	TypeValue []*string `json:"TypeValue,omitnil,omitempty" name:"TypeValue"`

	// Category ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	TypeId *int64 `json:"TypeId,omitnil,omitempty" name:"TypeId"`

	// Creation time
	// Note: This field may return null, indicating that no valid values can be obtained.
	CreateTime *int64 `json:"CreateTime,omitnil,omitempty" name:"CreateTime"`

	// Creator
	// Note: This field may return null, indicating that no valid values can be obtained.
	CreateUser *string `json:"CreateUser,omitnil,omitempty" name:"CreateUser"`

	// Whether it is a system category
	// Note: This field may return null, indicating that no valid values can be obtained.
	IsSystem *bool `json:"IsSystem,omitnil,omitempty" name:"IsSystem"`
}

type ModifyApplicationAppKeyRequest

type ModifyApplicationAppKeyRequest struct {
	*tchttp.BaseRequest

	// Application ID
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Android package name
	AndroidAppKey *string `json:"AndroidAppKey,omitnil,omitempty" name:"AndroidAppKey"`

	// iOS package name
	IOSAppKey *string `json:"IOSAppKey,omitnil,omitempty" name:"IOSAppKey"`
}

func NewModifyApplicationAppKeyRequest

func NewModifyApplicationAppKeyRequest() (request *ModifyApplicationAppKeyRequest)

func (*ModifyApplicationAppKeyRequest) FromJsonString

func (r *ModifyApplicationAppKeyRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyApplicationAppKeyRequest) ToJsonString

func (r *ModifyApplicationAppKeyRequest) ToJsonString() string

type ModifyApplicationAppKeyRequestParams

type ModifyApplicationAppKeyRequestParams struct {
	// Application ID
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Android package name
	AndroidAppKey *string `json:"AndroidAppKey,omitnil,omitempty" name:"AndroidAppKey"`

	// iOS package name
	IOSAppKey *string `json:"IOSAppKey,omitnil,omitempty" name:"IOSAppKey"`
}

Predefined struct for user

type ModifyApplicationAppKeyResponse

type ModifyApplicationAppKeyResponse struct {
	*tchttp.BaseResponse
	Response *ModifyApplicationAppKeyResponseParams `json:"Response"`
}

func NewModifyApplicationAppKeyResponse

func NewModifyApplicationAppKeyResponse() (response *ModifyApplicationAppKeyResponse)

func (*ModifyApplicationAppKeyResponse) FromJsonString

func (r *ModifyApplicationAppKeyResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyApplicationAppKeyResponse) ToJsonString

func (r *ModifyApplicationAppKeyResponse) ToJsonString() string

type ModifyApplicationAppKeyResponseParams

type ModifyApplicationAppKeyResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type ModifyApplicationAppUrlRequest

type ModifyApplicationAppUrlRequest struct {
	*tchttp.BaseRequest

	// Application ID
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Android address
	AndroidAppURL *string `json:"AndroidAppURL,omitnil,omitempty" name:"AndroidAppURL"`

	// iOS address
	IOSAppURL *string `json:"IOSAppURL,omitnil,omitempty" name:"IOSAppURL"`
}

func NewModifyApplicationAppUrlRequest

func NewModifyApplicationAppUrlRequest() (request *ModifyApplicationAppUrlRequest)

func (*ModifyApplicationAppUrlRequest) FromJsonString

func (r *ModifyApplicationAppUrlRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyApplicationAppUrlRequest) ToJsonString

func (r *ModifyApplicationAppUrlRequest) ToJsonString() string

type ModifyApplicationAppUrlRequestParams

type ModifyApplicationAppUrlRequestParams struct {
	// Application ID
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Android address
	AndroidAppURL *string `json:"AndroidAppURL,omitnil,omitempty" name:"AndroidAppURL"`

	// iOS address
	IOSAppURL *string `json:"IOSAppURL,omitnil,omitempty" name:"IOSAppURL"`
}

Predefined struct for user

type ModifyApplicationAppUrlResponse

type ModifyApplicationAppUrlResponse struct {
	*tchttp.BaseResponse
	Response *ModifyApplicationAppUrlResponseParams `json:"Response"`
}

func NewModifyApplicationAppUrlResponse

func NewModifyApplicationAppUrlResponse() (response *ModifyApplicationAppUrlResponse)

func (*ModifyApplicationAppUrlResponse) FromJsonString

func (r *ModifyApplicationAppUrlResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyApplicationAppUrlResponse) ToJsonString

func (r *ModifyApplicationAppUrlResponse) ToJsonString() string

type ModifyApplicationAppUrlResponseParams

type ModifyApplicationAppUrlResponseParams struct {
	// Response data
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type ModifyApplicationRequest

type ModifyApplicationRequest struct {
	*tchttp.BaseRequest

	// Application ID
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// The application name.
	ApplicationName *string `json:"ApplicationName,omitnil,omitempty" name:"ApplicationName"`

	// Application introduction
	Intro *string `json:"Intro,omitnil,omitempty" name:"Intro"`

	Logo *string `json:"Logo,omitnil,omitempty" name:"Logo"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Android package name
	AndroidAppKey *string `json:"AndroidAppKey,omitnil,omitempty" name:"AndroidAppKey"`

	// iOS bundleId
	IosAppKey *string `json:"IosAppKey,omitnil,omitempty" name:"IosAppKey"`

	// Remarks
	Remark *string `json:"Remark,omitnil,omitempty" name:"Remark"`

	// Android App download address
	AndroidAppURL *string `json:"AndroidAppURL,omitnil,omitempty" name:"AndroidAppURL"`

	// iOS App download address
	IosAppURL *string `json:"IosAppURL,omitnil,omitempty" name:"IosAppURL"`
}

func NewModifyApplicationRequest

func NewModifyApplicationRequest() (request *ModifyApplicationRequest)

func (*ModifyApplicationRequest) FromJsonString

func (r *ModifyApplicationRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyApplicationRequest) ToJsonString

func (r *ModifyApplicationRequest) ToJsonString() string

type ModifyApplicationRequestParams

type ModifyApplicationRequestParams struct {
	// Application ID
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// The application name.
	ApplicationName *string `json:"ApplicationName,omitnil,omitempty" name:"ApplicationName"`

	// Application introduction
	Intro *string `json:"Intro,omitnil,omitempty" name:"Intro"`

	Logo *string `json:"Logo,omitnil,omitempty" name:"Logo"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Android package name
	AndroidAppKey *string `json:"AndroidAppKey,omitnil,omitempty" name:"AndroidAppKey"`

	// iOS bundleId
	IosAppKey *string `json:"IosAppKey,omitnil,omitempty" name:"IosAppKey"`

	// Remarks
	Remark *string `json:"Remark,omitnil,omitempty" name:"Remark"`

	// Android App download address
	AndroidAppURL *string `json:"AndroidAppURL,omitnil,omitempty" name:"AndroidAppURL"`

	// iOS App download address
	IosAppURL *string `json:"IosAppURL,omitnil,omitempty" name:"IosAppURL"`
}

Predefined struct for user

type ModifyApplicationResponse

type ModifyApplicationResponse struct {
	*tchttp.BaseResponse
	Response *ModifyApplicationResponseParams `json:"Response"`
}

func NewModifyApplicationResponse

func NewModifyApplicationResponse() (response *ModifyApplicationResponse)

func (*ModifyApplicationResponse) FromJsonString

func (r *ModifyApplicationResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyApplicationResponse) ToJsonString

func (r *ModifyApplicationResponse) ToJsonString() string

type ModifyApplicationResponseParams

type ModifyApplicationResponseParams struct {
	// Response data
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type ModifyDomainRequest

type ModifyDomainRequest struct {
	*tchttp.BaseRequest

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Domain name list
	Domain []*CreateDomainParam `json:"Domain,omitnil,omitempty" name:"Domain"`
}

func NewModifyDomainRequest

func NewModifyDomainRequest() (request *ModifyDomainRequest)

func (*ModifyDomainRequest) FromJsonString

func (r *ModifyDomainRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyDomainRequest) ToJsonString

func (r *ModifyDomainRequest) ToJsonString() string

type ModifyDomainRequestParams

type ModifyDomainRequestParams struct {
	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Domain name list
	Domain []*CreateDomainParam `json:"Domain,omitnil,omitempty" name:"Domain"`
}

Predefined struct for user

type ModifyDomainResponse

type ModifyDomainResponse struct {
	*tchttp.BaseResponse
	Response *ModifyDomainResponseParams `json:"Response"`
}

func NewModifyDomainResponse

func NewModifyDomainResponse() (response *ModifyDomainResponse)

func (*ModifyDomainResponse) FromJsonString

func (r *ModifyDomainResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyDomainResponse) ToJsonString

func (r *ModifyDomainResponse) ToJsonString() string

type ModifyDomainResponseParams

type ModifyDomainResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type ModifyGlobalDomainRequest

type ModifyGlobalDomainRequest struct {
	*tchttp.BaseRequest

	// Domain ID
	DomainId *int64 `json:"DomainId,omitnil,omitempty" name:"DomainId"`

	// Domain name
	DomainUrl *string `json:"DomainUrl,omitnil,omitempty" name:"DomainUrl"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewModifyGlobalDomainRequest

func NewModifyGlobalDomainRequest() (request *ModifyGlobalDomainRequest)

func (*ModifyGlobalDomainRequest) FromJsonString

func (r *ModifyGlobalDomainRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyGlobalDomainRequest) ToJsonString

func (r *ModifyGlobalDomainRequest) ToJsonString() string

type ModifyGlobalDomainRequestParams

type ModifyGlobalDomainRequestParams struct {
	// Domain ID
	DomainId *int64 `json:"DomainId,omitnil,omitempty" name:"DomainId"`

	// Domain name
	DomainUrl *string `json:"DomainUrl,omitnil,omitempty" name:"DomainUrl"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type ModifyGlobalDomainResponse

type ModifyGlobalDomainResponse struct {
	*tchttp.BaseResponse
	Response *ModifyGlobalDomainResponseParams `json:"Response"`
}

func NewModifyGlobalDomainResponse

func NewModifyGlobalDomainResponse() (response *ModifyGlobalDomainResponse)

func (*ModifyGlobalDomainResponse) FromJsonString

func (r *ModifyGlobalDomainResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyGlobalDomainResponse) ToJsonString

func (r *ModifyGlobalDomainResponse) ToJsonString() string

type ModifyGlobalDomainResponseParams

type ModifyGlobalDomainResponseParams struct {
	// Response data
	Data *GlobalDomainModifyRespResp `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type ModifyMNPRequest

type ModifyMNPRequest struct {
	*tchttp.BaseRequest

	// Mini program type
	MNPType *string `json:"MNPType,omitnil,omitempty" name:"MNPType"`

	// Mini program name
	MNPName *string `json:"MNPName,omitnil,omitempty" name:"MNPName"`

	// Mini program introduction
	MNPIntro *string `json:"MNPIntro,omitnil,omitempty" name:"MNPIntro"`

	// Mini program description
	MNPDesc *string `json:"MNPDesc,omitnil,omitempty" name:"MNPDesc"`

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Mini program icon
	MNPIcon *string `json:"MNPIcon,omitnil,omitempty" name:"MNPIcon"`
}

func NewModifyMNPRequest

func NewModifyMNPRequest() (request *ModifyMNPRequest)

func (*ModifyMNPRequest) FromJsonString

func (r *ModifyMNPRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyMNPRequest) ToJsonString

func (r *ModifyMNPRequest) ToJsonString() string

type ModifyMNPRequestParams

type ModifyMNPRequestParams struct {
	// Mini program type
	MNPType *string `json:"MNPType,omitnil,omitempty" name:"MNPType"`

	// Mini program name
	MNPName *string `json:"MNPName,omitnil,omitempty" name:"MNPName"`

	// Mini program introduction
	MNPIntro *string `json:"MNPIntro,omitnil,omitempty" name:"MNPIntro"`

	// Mini program description
	MNPDesc *string `json:"MNPDesc,omitnil,omitempty" name:"MNPDesc"`

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Mini program icon
	MNPIcon *string `json:"MNPIcon,omitnil,omitempty" name:"MNPIcon"`
}

Predefined struct for user

type ModifyMNPResponse

type ModifyMNPResponse struct {
	*tchttp.BaseResponse
	Response *ModifyMNPResponseParams `json:"Response"`
}

func NewModifyMNPResponse

func NewModifyMNPResponse() (response *ModifyMNPResponse)

func (*ModifyMNPResponse) FromJsonString

func (r *ModifyMNPResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyMNPResponse) ToJsonString

func (r *ModifyMNPResponse) ToJsonString() string

type ModifyMNPResponseParams

type ModifyMNPResponseParams struct {
	// Response data
	Data *ResourceIdInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type ModifyMNPStatusOfflineRequest

type ModifyMNPStatusOfflineRequest struct {
	*tchttp.BaseRequest

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewModifyMNPStatusOfflineRequest

func NewModifyMNPStatusOfflineRequest() (request *ModifyMNPStatusOfflineRequest)

func (*ModifyMNPStatusOfflineRequest) FromJsonString

func (r *ModifyMNPStatusOfflineRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyMNPStatusOfflineRequest) ToJsonString

func (r *ModifyMNPStatusOfflineRequest) ToJsonString() string

type ModifyMNPStatusOfflineRequestParams

type ModifyMNPStatusOfflineRequestParams struct {
	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type ModifyMNPStatusOfflineResponse

type ModifyMNPStatusOfflineResponse struct {
	*tchttp.BaseResponse
	Response *ModifyMNPStatusOfflineResponseParams `json:"Response"`
}

func NewModifyMNPStatusOfflineResponse

func NewModifyMNPStatusOfflineResponse() (response *ModifyMNPStatusOfflineResponse)

func (*ModifyMNPStatusOfflineResponse) FromJsonString

func (r *ModifyMNPStatusOfflineResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyMNPStatusOfflineResponse) ToJsonString

func (r *ModifyMNPStatusOfflineResponse) ToJsonString() string

type ModifyMNPStatusOfflineResponseParams

type ModifyMNPStatusOfflineResponseParams struct {
	// Response data
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type ModifyMNPVersionPreviewRequest

type ModifyMNPVersionPreviewRequest struct {
	*tchttp.BaseRequest

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// 1 Set 2 Cancel
	ActionType *int64 `json:"ActionType,omitnil,omitempty" name:"ActionType"`

	// Mini program version ID
	MNPVersionId *int64 `json:"MNPVersionId,omitnil,omitempty" name:"MNPVersionId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Path to the demo page
	TestEntrancePath *string `json:"TestEntrancePath,omitnil,omitempty" name:"TestEntrancePath"`
}

func NewModifyMNPVersionPreviewRequest

func NewModifyMNPVersionPreviewRequest() (request *ModifyMNPVersionPreviewRequest)

func (*ModifyMNPVersionPreviewRequest) FromJsonString

func (r *ModifyMNPVersionPreviewRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyMNPVersionPreviewRequest) ToJsonString

func (r *ModifyMNPVersionPreviewRequest) ToJsonString() string

type ModifyMNPVersionPreviewRequestParams

type ModifyMNPVersionPreviewRequestParams struct {
	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// 1 Set 2 Cancel
	ActionType *int64 `json:"ActionType,omitnil,omitempty" name:"ActionType"`

	// Mini program version ID
	MNPVersionId *int64 `json:"MNPVersionId,omitnil,omitempty" name:"MNPVersionId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Path to the demo page
	TestEntrancePath *string `json:"TestEntrancePath,omitnil,omitempty" name:"TestEntrancePath"`
}

Predefined struct for user

type ModifyMNPVersionPreviewResponse

type ModifyMNPVersionPreviewResponse struct {
	*tchttp.BaseResponse
	Response *ModifyMNPVersionPreviewResponseParams `json:"Response"`
}

func NewModifyMNPVersionPreviewResponse

func NewModifyMNPVersionPreviewResponse() (response *ModifyMNPVersionPreviewResponse)

func (*ModifyMNPVersionPreviewResponse) FromJsonString

func (r *ModifyMNPVersionPreviewResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyMNPVersionPreviewResponse) ToJsonString

func (r *ModifyMNPVersionPreviewResponse) ToJsonString() string

type ModifyMNPVersionPreviewResponseParams

type ModifyMNPVersionPreviewResponseParams struct {
	// Response data
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type ModifyOnlineVersionRequest

type ModifyOnlineVersionRequest struct {
	*tchttp.BaseRequest

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Mini program version ID
	MNPVersionId *int64 `json:"MNPVersionId,omitnil,omitempty" name:"MNPVersionId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Mini program version number
	MNPVersion *string `json:"MNPVersion,omitnil,omitempty" name:"MNPVersion"`
}

func NewModifyOnlineVersionRequest

func NewModifyOnlineVersionRequest() (request *ModifyOnlineVersionRequest)

func (*ModifyOnlineVersionRequest) FromJsonString

func (r *ModifyOnlineVersionRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyOnlineVersionRequest) ToJsonString

func (r *ModifyOnlineVersionRequest) ToJsonString() string

type ModifyOnlineVersionRequestParams

type ModifyOnlineVersionRequestParams struct {
	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Mini program version ID
	MNPVersionId *int64 `json:"MNPVersionId,omitnil,omitempty" name:"MNPVersionId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Mini program version number
	MNPVersion *string `json:"MNPVersion,omitnil,omitempty" name:"MNPVersion"`
}

Predefined struct for user

type ModifyOnlineVersionResponse

type ModifyOnlineVersionResponse struct {
	*tchttp.BaseResponse
	Response *ModifyOnlineVersionResponseParams `json:"Response"`
}

func NewModifyOnlineVersionResponse

func NewModifyOnlineVersionResponse() (response *ModifyOnlineVersionResponse)

func (*ModifyOnlineVersionResponse) FromJsonString

func (r *ModifyOnlineVersionResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyOnlineVersionResponse) ToJsonString

func (r *ModifyOnlineVersionResponse) ToJsonString() string

type ModifyOnlineVersionResponseParams

type ModifyOnlineVersionResponseParams struct {
	// Response data
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type ModifyPlatformAuditStatusRequest

type ModifyPlatformAuditStatusRequest struct {
	*tchttp.BaseRequest

	// Approval ticket ID
	AuditNo *string `json:"AuditNo,omitnil,omitempty" name:"AuditNo"`

	// Approval result
	AuditResult *int64 `json:"AuditResult,omitnil,omitempty" name:"AuditResult"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Approval description
	AuditNote *string `json:"AuditNote,omitnil,omitempty" name:"AuditNote"`

	// Approval details
	AuditItems []*AuditInfoReq `json:"AuditItems,omitnil,omitempty" name:"AuditItems"`
}

func NewModifyPlatformAuditStatusRequest

func NewModifyPlatformAuditStatusRequest() (request *ModifyPlatformAuditStatusRequest)

func (*ModifyPlatformAuditStatusRequest) FromJsonString

func (r *ModifyPlatformAuditStatusRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyPlatformAuditStatusRequest) ToJsonString

func (r *ModifyPlatformAuditStatusRequest) ToJsonString() string

type ModifyPlatformAuditStatusRequestParams

type ModifyPlatformAuditStatusRequestParams struct {
	// Approval ticket ID
	AuditNo *string `json:"AuditNo,omitnil,omitempty" name:"AuditNo"`

	// Approval result
	AuditResult *int64 `json:"AuditResult,omitnil,omitempty" name:"AuditResult"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Approval description
	AuditNote *string `json:"AuditNote,omitnil,omitempty" name:"AuditNote"`

	// Approval details
	AuditItems []*AuditInfoReq `json:"AuditItems,omitnil,omitempty" name:"AuditItems"`
}

Predefined struct for user

type ModifyPlatformAuditStatusResponse

type ModifyPlatformAuditStatusResponse struct {
	*tchttp.BaseResponse
	Response *ModifyPlatformAuditStatusResponseParams `json:"Response"`
}

func NewModifyPlatformAuditStatusResponse

func NewModifyPlatformAuditStatusResponse() (response *ModifyPlatformAuditStatusResponse)

func (*ModifyPlatformAuditStatusResponse) FromJsonString

func (r *ModifyPlatformAuditStatusResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyPlatformAuditStatusResponse) ToJsonString

func (r *ModifyPlatformAuditStatusResponse) ToJsonString() string

type ModifyPlatformAuditStatusResponseParams

type ModifyPlatformAuditStatusResponseParams struct {
	// Response data
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type ModifySensitiveAPIAuditStatusRequest

type ModifySensitiveAPIAuditStatusRequest struct {
	*tchttp.BaseRequest

	// Approval ticket ID
	AuditNo *string `json:"AuditNo,omitnil,omitempty" name:"AuditNo"`

	// Approval status 20 Rejected 30 Approved
	AuditStatus *int64 `json:"AuditStatus,omitnil,omitempty" name:"AuditStatus"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Approval notes
	AuditNote *string `json:"AuditNote,omitnil,omitempty" name:"AuditNote"`
}

func NewModifySensitiveAPIAuditStatusRequest

func NewModifySensitiveAPIAuditStatusRequest() (request *ModifySensitiveAPIAuditStatusRequest)

func (*ModifySensitiveAPIAuditStatusRequest) FromJsonString

func (r *ModifySensitiveAPIAuditStatusRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifySensitiveAPIAuditStatusRequest) ToJsonString

func (r *ModifySensitiveAPIAuditStatusRequest) ToJsonString() string

type ModifySensitiveAPIAuditStatusRequestParams

type ModifySensitiveAPIAuditStatusRequestParams struct {
	// Approval ticket ID
	AuditNo *string `json:"AuditNo,omitnil,omitempty" name:"AuditNo"`

	// Approval status 20 Rejected 30 Approved
	AuditStatus *int64 `json:"AuditStatus,omitnil,omitempty" name:"AuditStatus"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Approval notes
	AuditNote *string `json:"AuditNote,omitnil,omitempty" name:"AuditNote"`
}

Predefined struct for user

type ModifySensitiveAPIAuditStatusResponse

type ModifySensitiveAPIAuditStatusResponse struct {
	*tchttp.BaseResponse
	Response *ModifySensitiveAPIAuditStatusResponseParams `json:"Response"`
}

func NewModifySensitiveAPIAuditStatusResponse

func NewModifySensitiveAPIAuditStatusResponse() (response *ModifySensitiveAPIAuditStatusResponse)

func (*ModifySensitiveAPIAuditStatusResponse) FromJsonString

func (r *ModifySensitiveAPIAuditStatusResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifySensitiveAPIAuditStatusResponse) ToJsonString

type ModifySensitiveAPIAuditStatusResponseParams

type ModifySensitiveAPIAuditStatusResponseParams struct {
	// Response data
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type ModifyTeamMemberRequest

type ModifyTeamMemberRequest struct {
	*tchttp.BaseRequest

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// User ID
	UserId *string `json:"UserId,omitnil,omitempty" name:"UserId"`

	// Role ID.
	RoleId *int64 `json:"RoleId,omitnil,omitempty" name:"RoleId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewModifyTeamMemberRequest

func NewModifyTeamMemberRequest() (request *ModifyTeamMemberRequest)

func (*ModifyTeamMemberRequest) FromJsonString

func (r *ModifyTeamMemberRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyTeamMemberRequest) ToJsonString

func (r *ModifyTeamMemberRequest) ToJsonString() string

type ModifyTeamMemberRequestParams

type ModifyTeamMemberRequestParams struct {
	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// User ID
	UserId *string `json:"UserId,omitnil,omitempty" name:"UserId"`

	// Role ID.
	RoleId *int64 `json:"RoleId,omitnil,omitempty" name:"RoleId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type ModifyTeamMemberResponse

type ModifyTeamMemberResponse struct {
	*tchttp.BaseResponse
	Response *ModifyTeamMemberResponseParams `json:"Response"`
}

func NewModifyTeamMemberResponse

func NewModifyTeamMemberResponse() (response *ModifyTeamMemberResponse)

func (*ModifyTeamMemberResponse) FromJsonString

func (r *ModifyTeamMemberResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyTeamMemberResponse) ToJsonString

func (r *ModifyTeamMemberResponse) ToJsonString() string

type ModifyTeamMemberResponseParams

type ModifyTeamMemberResponseParams struct {
	// Response data
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type ModifyTeamRequest

type ModifyTeamRequest struct {
	*tchttp.BaseRequest

	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Team name
	TeamName *string `json:"TeamName,omitnil,omitempty" name:"TeamName"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Team administrator
	AdminUserId *string `json:"AdminUserId,omitnil,omitempty" name:"AdminUserId"`
}

func NewModifyTeamRequest

func NewModifyTeamRequest() (request *ModifyTeamRequest)

func (*ModifyTeamRequest) FromJsonString

func (r *ModifyTeamRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyTeamRequest) ToJsonString

func (r *ModifyTeamRequest) ToJsonString() string

type ModifyTeamRequestParams

type ModifyTeamRequestParams struct {
	// Team ID
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Team name
	TeamName *string `json:"TeamName,omitnil,omitempty" name:"TeamName"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`

	// Team administrator
	AdminUserId *string `json:"AdminUserId,omitnil,omitempty" name:"AdminUserId"`
}

Predefined struct for user

type ModifyTeamResponse

type ModifyTeamResponse struct {
	*tchttp.BaseResponse
	Response *ModifyTeamResponseParams `json:"Response"`
}

func NewModifyTeamResponse

func NewModifyTeamResponse() (response *ModifyTeamResponse)

func (*ModifyTeamResponse) FromJsonString

func (r *ModifyTeamResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyTeamResponse) ToJsonString

func (r *ModifyTeamResponse) ToJsonString() string

type ModifyTeamResponseParams

type ModifyTeamResponseParams struct {
	// Response data
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type ModifyUserPasswordRequest

type ModifyUserPasswordRequest struct {
	*tchttp.BaseRequest

	// User ID
	UserId *string `json:"UserId,omitnil,omitempty" name:"UserId"`

	// Account password. Use CreatePresetKey to get publick key to encrypt the password.
	Password *string `json:"Password,omitnil,omitempty" name:"Password"`

	// Call CreatePresetKey to get the keyID from RequestId
	KeyId *string `json:"KeyId,omitnil,omitempty" name:"KeyId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewModifyUserPasswordRequest

func NewModifyUserPasswordRequest() (request *ModifyUserPasswordRequest)

func (*ModifyUserPasswordRequest) FromJsonString

func (r *ModifyUserPasswordRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyUserPasswordRequest) ToJsonString

func (r *ModifyUserPasswordRequest) ToJsonString() string

type ModifyUserPasswordRequestParams

type ModifyUserPasswordRequestParams struct {
	// User ID
	UserId *string `json:"UserId,omitnil,omitempty" name:"UserId"`

	// Account password. Use CreatePresetKey to get publick key to encrypt the password.
	Password *string `json:"Password,omitnil,omitempty" name:"Password"`

	// Call CreatePresetKey to get the keyID from RequestId
	KeyId *string `json:"KeyId,omitnil,omitempty" name:"KeyId"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type ModifyUserPasswordResponse

type ModifyUserPasswordResponse struct {
	*tchttp.BaseResponse
	Response *ModifyUserPasswordResponseParams `json:"Response"`
}

func NewModifyUserPasswordResponse

func NewModifyUserPasswordResponse() (response *ModifyUserPasswordResponse)

func (*ModifyUserPasswordResponse) FromJsonString

func (r *ModifyUserPasswordResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyUserPasswordResponse) ToJsonString

func (r *ModifyUserPasswordResponse) ToJsonString() string

type ModifyUserPasswordResponseParams

type ModifyUserPasswordResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type ModifyUserRequest

type ModifyUserRequest struct {
	*tchttp.BaseRequest

	// User ID
	UserId *string `json:"UserId,omitnil,omitempty" name:"UserId"`

	// User name
	UserName *string `json:"UserName,omitnil,omitempty" name:"UserName"`

	// Account type 2 - Platform administrator 3 - Ordinary member
	AccountType *int64 `json:"AccountType,omitnil,omitempty" name:"AccountType"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

func NewModifyUserRequest

func NewModifyUserRequest() (request *ModifyUserRequest)

func (*ModifyUserRequest) FromJsonString

func (r *ModifyUserRequest) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyUserRequest) ToJsonString

func (r *ModifyUserRequest) ToJsonString() string

type ModifyUserRequestParams

type ModifyUserRequestParams struct {
	// User ID
	UserId *string `json:"UserId,omitnil,omitempty" name:"UserId"`

	// User name
	UserName *string `json:"UserName,omitnil,omitempty" name:"UserName"`

	// Account type 2 - Platform administrator 3 - Ordinary member
	AccountType *int64 `json:"AccountType,omitnil,omitempty" name:"AccountType"`

	// Platform ID
	PlatformId *string `json:"PlatformId,omitnil,omitempty" name:"PlatformId"`
}

Predefined struct for user

type ModifyUserResponse

type ModifyUserResponse struct {
	*tchttp.BaseResponse
	Response *ModifyUserResponseParams `json:"Response"`
}

func NewModifyUserResponse

func NewModifyUserResponse() (response *ModifyUserResponse)

func (*ModifyUserResponse) FromJsonString

func (r *ModifyUserResponse) FromJsonString(s string) error

FromJsonString It is highly **NOT** recommended to use this function because it has no param check, nor strict type check

func (*ModifyUserResponse) ToJsonString

func (r *ModifyUserResponse) ToJsonString() string

type ModifyUserResponseParams

type ModifyUserResponseParams struct {
	// Response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *BooleanInfo `json:"Data,omitnil,omitempty" name:"Data"`

	// The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
	RequestId *string `json:"RequestId,omitnil,omitempty" name:"RequestId"`
}

Predefined struct for user

type PresetResp

type PresetResp struct {
	// RSA encryption public key
	// Note: This field may return null, indicating that no valid values can be obtained.
	Key *string `json:"Key,omitnil,omitempty" name:"Key"`
}

type QueryOnlineVersionResp

type QueryOnlineVersionResp struct {
	// Mini program ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Version
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPVersion *string `json:"MNPVersion,omitnil,omitempty" name:"MNPVersion"`

	// Version ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPVersionId *int64 `json:"MNPVersionId,omitnil,omitempty" name:"MNPVersionId"`

	// Version note
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPVersionNote *string `json:"MNPVersionNote,omitnil,omitempty" name:"MNPVersionNote"`

	// Update time
	// Note: This field may return null, indicating that no valid values can be obtained.
	UpdateTime *string `json:"UpdateTime,omitnil,omitempty" name:"UpdateTime"`
}

type ResourceIdInfo

type ResourceIdInfo struct {
	// Resource ID
	// 0: No trial version currently available
	// 1: A trial version is currently available and uploaded by the current user
	// 2: A trial version is currently available and uploaded by another user
	// Note: This field may return null, indicating that no valid values can be obtained.
	ResourceId *int64 `json:"ResourceId,omitnil,omitempty" name:"ResourceId"`
}

type ResourceIdStringInfo

type ResourceIdStringInfo struct {
	// The ID of the resource returned
	// Note: This field may return null, indicating that no valid values can be obtained.
	ResourceId *string `json:"ResourceId,omitnil,omitempty" name:"ResourceId"`
}

type SensitiveApiAuditInfoPageResp

type SensitiveApiAuditInfoPageResp struct {
	// Total number of entries
	TotalCount *int64 `json:"TotalCount,omitnil,omitempty" name:"TotalCount"`

	// List information
	DataList []*SensitiveApiAuditInfoResp `json:"DataList,omitnil,omitempty" name:"DataList"`
}

type SensitiveApiAuditInfoResp

type SensitiveApiAuditInfoResp struct {
	// Approval ticket ID
	AuditNo *string `json:"AuditNo,omitnil,omitempty" name:"AuditNo"`

	// Approval ticket ID
	ApiId *string `json:"ApiId,omitnil,omitempty" name:"ApiId"`

	// API name
	ApiName *string `json:"ApiName,omitnil,omitempty" name:"ApiName"`

	// API request method
	ApiMethod *string `json:"ApiMethod,omitnil,omitempty" name:"ApiMethod"`

	// Mini program ID
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Mini program name
	MNPName *string `json:"MNPName,omitnil,omitempty" name:"MNPName"`

	// Applicant
	ApplyUser *string `json:"ApplyUser,omitnil,omitempty" name:"ApplyUser"`

	// Application time
	ApplyTime *string `json:"ApplyTime,omitnil,omitempty" name:"ApplyTime"`

	// Application notes
	ApplyNote *string `json:"ApplyNote,omitnil,omitempty" name:"ApplyNote"`

	// Approval status
	AuditStatus *int64 `json:"AuditStatus,omitnil,omitempty" name:"AuditStatus"`

	// Approver
	// Note: This field may return null, indicating that no valid values can be obtained.
	AuditUser *string `json:"AuditUser,omitnil,omitempty" name:"AuditUser"`

	// Approval time
	// Note: This field may return null, indicating that no valid values can be obtained.
	AuditTime *string `json:"AuditTime,omitnil,omitempty" name:"AuditTime"`

	// Approval notes
	// Note: This field may return null, indicating that no valid values can be obtained.
	AuditNote *string `json:"AuditNote,omitnil,omitempty" name:"AuditNote"`

	// Application ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// The application name.
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationName *string `json:"ApplicationName,omitnil,omitempty" name:"ApplicationName"`

	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationLogo *string `json:"ApplicationLogo,omitnil,omitempty" name:"ApplicationLogo"`

	// API type. 1: System; 2: Custom
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApiType *int64 `json:"ApiType,omitnil,omitempty" name:"ApiType"`

	// API function description
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApiDesc *string `json:"ApiDesc,omitnil,omitempty" name:"ApiDesc"`
}

type SensitiveApiInfoResp

type SensitiveApiInfoResp struct {
	// APIID
	ApiId *string `json:"ApiId,omitnil,omitempty" name:"ApiId"`

	// API name
	ApiName *string `json:"ApiName,omitnil,omitempty" name:"ApiName"`

	// API method
	ApiMethod *string `json:"ApiMethod,omitnil,omitempty" name:"ApiMethod"`

	// API description
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApiDesc *string `json:"ApiDesc,omitnil,omitempty" name:"ApiDesc"`

	// Creator
	CreateUser *string `json:"CreateUser,omitnil,omitempty" name:"CreateUser"`

	// Creation time
	CreateTime *string `json:"CreateTime,omitnil,omitempty" name:"CreateTime"`

	// Updater
	UpdateUser *string `json:"UpdateUser,omitnil,omitempty" name:"UpdateUser"`

	// Update date
	UpdateTime *string `json:"UpdateTime,omitnil,omitempty" name:"UpdateTime"`

	// Application ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// Application name
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationName *string `json:"ApplicationName,omitnil,omitempty" name:"ApplicationName"`

	// Team ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamId *string `json:"TeamId,omitnil,omitempty" name:"TeamId"`

	// Team name
	// Note: This field may return null, indicating that no valid values can be obtained.
	TeamName *string `json:"TeamName,omitnil,omitempty" name:"TeamName"`

	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationLogo *string `json:"ApplicationLogo,omitnil,omitempty" name:"ApplicationLogo"`

	// API type 1 - System API 2 Custom API
	// Note: This field may return null, indicating that no valid values can be obtained.
	APIType *int64 `json:"APIType,omitnil,omitempty" name:"APIType"`

	// API status 0 Public 1 Restricted
	// Note: This field may return null, indicating that no valid values can be obtained.
	Status *int64 `json:"Status,omitnil,omitempty" name:"Status"`
}

type SensitiveApiPageInfo

type SensitiveApiPageInfo struct {
	// Total number of results.
	// Note: This field may return null, indicating that no valid values can be obtained.
	TotalCount *int64 `json:"TotalCount,omitnil,omitempty" name:"TotalCount"`

	// List information
	// Note: This field may return null, indicating that no valid values can be obtained.
	DataList []*SensitiveApiInfoResp `json:"DataList,omitnil,omitempty" name:"DataList"`
}

type ShowCaseRelAppInfo

type ShowCaseRelAppInfo struct {
	// Application ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationId *string `json:"ApplicationId,omitnil,omitempty" name:"ApplicationId"`

	// Application name
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationName *string `json:"ApplicationName,omitnil,omitempty" name:"ApplicationName"`

	// Android URL
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationAndUrl *string `json:"ApplicationAndUrl,omitnil,omitempty" name:"ApplicationAndUrl"`

	// iOS URL
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationIOSUrl *string `json:"ApplicationIOSUrl,omitnil,omitempty" name:"ApplicationIOSUrl"`

	// Application icon
	// Note: This field may return null, indicating that no valid values can be obtained.
	ApplicationIcon *string `json:"ApplicationIcon,omitnil,omitempty" name:"ApplicationIcon"`
}

type SimpleStringKeyValue

type SimpleStringKeyValue struct {
	// Key ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	Key *string `json:"Key,omitnil,omitempty" name:"Key"`

	// Text description
	// Note: This field may return null, indicating that no valid values can be obtained.
	Value *string `json:"Value,omitnil,omitempty" name:"Value"`
}

type StringData

type StringData struct {
	// String type response data
	// Note: This field may return null, indicating that no valid values can be obtained.
	Data *string `json:"Data,omitnil,omitempty" name:"Data"`
}

type UploadFileTempSecret

type UploadFileTempSecret struct {
	// Bucket
	// Note: This field may return null, indicating that no valid values can be obtained.
	Bucket *string `json:"Bucket,omitnil,omitempty" name:"Bucket"`

	// Region
	// Note: This field may return null, indicating that no valid values can be obtained.
	Region *string `json:"Region,omitnil,omitempty" name:"Region"`

	// Destination of upload
	// Note: This field may return null, indicating that no valid values can be obtained.
	Path *string `json:"Path,omitnil,omitempty" name:"Path"`

	// Temporary secret ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	TempSecretId *string `json:"TempSecretId,omitnil,omitempty" name:"TempSecretId"`

	// Temporary secret key
	// Note: This field may return null, indicating that no valid values can be obtained.
	TempSecretKey *string `json:"TempSecretKey,omitnil,omitempty" name:"TempSecretKey"`

	// Token
	// Note: This field may return null, indicating that no valid values can be obtained.
	Token *string `json:"Token,omitnil,omitempty" name:"Token"`
}

type VersionBoardResp

type VersionBoardResp struct {
	// Mini program ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPId *string `json:"MNPId,omitnil,omitempty" name:"MNPId"`

	// Mini program version ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPVersionId *int64 `json:"MNPVersionId,omitnil,omitempty" name:"MNPVersionId"`

	// Mini program name
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPName *string `json:"MNPName,omitnil,omitempty" name:"MNPName"`

	// Mini program icon
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPIcon *string `json:"MNPIcon,omitnil,omitempty" name:"MNPIcon"`

	// Mini program category
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPType *string `json:"MNPType,omitnil,omitempty" name:"MNPType"`

	// Mini program introduction
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPIntro *string `json:"MNPIntro,omitnil,omitempty" name:"MNPIntro"`

	// Mini program description
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPDesc *string `json:"MNPDesc,omitnil,omitempty" name:"MNPDesc"`

	// Developer
	// Note: This field may return null, indicating that no valid values can be obtained.
	CreateUser *string `json:"CreateUser,omitnil,omitempty" name:"CreateUser"`

	// The time when the developer created it
	// Note: This field may return null, indicating that no valid values can be obtained.
	CreateTime *string `json:"CreateTime,omitnil,omitempty" name:"CreateTime"`

	// Mini program version
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPVersion *string `json:"MNPVersion,omitnil,omitempty" name:"MNPVersion"`

	// Version features
	// Note: This field may return null, indicating that no valid values can be obtained.
	MNPVersionIntro *string `json:"MNPVersionIntro,omitnil,omitempty" name:"MNPVersionIntro"`

	// Phase. Values: [Develop,Platform,Online]
	// Note: This field may return null, indicating that no valid values can be obtained.
	Phase *string `json:"Phase,omitnil,omitempty" name:"Phase"`

	// 0: Pending; 1: Processing; 2: Rejected; 3: Approved; 4: Cancelled
	// Note: This field may return null, indicating that no valid values can be obtained.
	AuditStatus *int64 `json:"AuditStatus,omitnil,omitempty" name:"AuditStatus"`

	// Approval ticket ID
	// Note: This field may return null, indicating that no valid values can be obtained.
	AuditNo *string `json:"AuditNo,omitnil,omitempty" name:"AuditNo"`

	// Whether it is a trial version.
	// 0: Not a trial version; 1: Trial version
	// Note: This field may return null, indicating that no valid values can be obtained.
	ShowCase *int64 `json:"ShowCase,omitnil,omitempty" name:"ShowCase"`

	// Scanning status
	// Note: This field may return null, indicating that no valid values can be obtained.
	ScanStatus *int64 `json:"ScanStatus,omitnil,omitempty" name:"ScanStatus"`

	// Scan score
	// Note: This field may return null, indicating that no valid values can be obtained.
	ScanScore *int64 `json:"ScanScore,omitnil,omitempty" name:"ScanScore"`

	// Version number to roll back to
	// Note: This field may return null, indicating that no valid values can be obtained.
	RollbackVersion *int64 `json:"RollbackVersion,omitnil,omitempty" name:"RollbackVersion"`

	// Release status
	// Note: This field may return null, indicating that no valid values can be obtained.
	Status *int64 `json:"Status,omitnil,omitempty" name:"Status"`

	// Address of the scan result
	// Note: This field may return null, indicating that no valid values can be obtained.
	ScanHtmlPath *string `json:"ScanHtmlPath,omitnil,omitempty" name:"ScanHtmlPath"`

	// Version approval status. 0: Pending; 1: Processing; 2: Rejected; 3: Approved; 4: Cancelled
	// Note: This field may return null, indicating that no valid values can be obtained.
	VersionCurrentStatus *int64 `json:"VersionCurrentStatus,omitnil,omitempty" name:"VersionCurrentStatus"`
}

Jump to

Keyboard shortcuts

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