mseap

package
v1.62.794 Latest Latest
Warning

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

Go to latest
Published: Jul 22, 2024 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ActivateLicenseRequest

type ActivateLicenseRequest struct {
	*requests.RpcRequest
	LicenseNo        string `position:"Query" name:"LicenseNo"`
	BizType          string `position:"Query" name:"BizType"`
	LicensePublisher string `position:"Query" name:"LicensePublisher"`
	BizId            string `position:"Query" name:"BizId"`
	LicenseCode      string `position:"Query" name:"LicenseCode"`
}

ActivateLicenseRequest is the request struct for api ActivateLicense

func CreateActivateLicenseRequest

func CreateActivateLicenseRequest() (request *ActivateLicenseRequest)

CreateActivateLicenseRequest creates a request to invoke ActivateLicense API

type ActivateLicenseResponse

type ActivateLicenseResponse struct {
	*responses.BaseResponse
	Data      bool   `json:"Data" xml:"Data"`
	RequestId string `json:"RequestId" xml:"RequestId"`
}

ActivateLicenseResponse is the response struct for api ActivateLicense

func CreateActivateLicenseResponse

func CreateActivateLicenseResponse() (response *ActivateLicenseResponse)

CreateActivateLicenseResponse creates a response to parse from ActivateLicense response

type CallbackTaskRequest

type CallbackTaskRequest struct {
	*requests.RpcRequest
	UserCallerParentId          requests.Integer `position:"Query" name:"UserCallerParentId"`
	OutTaskId                   string           `position:"Query" name:"OutTaskId"`
	ApiType                     string           `position:"Query" name:"ApiType"`
	UserMfaPresent              requests.Boolean `position:"Query" name:"UserMfaPresent"`
	UserKp                      string           `position:"Query" name:"UserKp"`
	Lang                        string           `position:"Query" name:"Lang"`
	TaskId                      string           `position:"Query" name:"TaskId"`
	UserCallerType              string           `position:"Query" name:"UserCallerType"`
	TaskType                    string           `position:"Query" name:"TaskType"`
	UserSecurityToken           string           `position:"Query" name:"UserSecurityToken"`
	UserAccessKeyId             string           `position:"Query" name:"UserAccessKeyId"`
	OrderId                     string           `position:"Query" name:"OrderId"`
	AliyunKp                    string           `position:"Query" name:"AliyunKp"`
	UserBid                     string           `position:"Query" name:"UserBid"`
	OriginalRequest             string           `position:"Query" name:"OriginalRequest"`
	PrincipalKey                string           `position:"Query" name:"PrincipalKey"`
	UserCallerSecurityTransport requests.Boolean `position:"Query" name:"UserCallerSecurityTransport"`
	BizCode                     string           `position:"Query" name:"BizCode"`
	UserClientIp                string           `position:"Query" name:"UserClientIp"`
	TaskData                    string           `position:"Query" name:"TaskData"`
	Bid                         string           `position:"Query" name:"Bid"`
}

CallbackTaskRequest is the request struct for api CallbackTask

func CreateCallbackTaskRequest

func CreateCallbackTaskRequest() (request *CallbackTaskRequest)

CreateCallbackTaskRequest creates a request to invoke CallbackTask API

type CallbackTaskResponse

type CallbackTaskResponse struct {
	*responses.BaseResponse
	AllowRetry     bool   `json:"AllowRetry" xml:"AllowRetry"`
	RequestId      string `json:"RequestId" xml:"RequestId"`
	ErrorMsg       string `json:"ErrorMsg" xml:"ErrorMsg"`
	HttpStatusCode int    `json:"HttpStatusCode" xml:"HttpStatusCode"`
	DynamicCode    string `json:"DynamicCode" xml:"DynamicCode"`
	ErrorCode      string `json:"ErrorCode" xml:"ErrorCode"`
	DynamicMessage string `json:"DynamicMessage" xml:"DynamicMessage"`
	Module         bool   `json:"Module" xml:"Module"`
	Success        bool   `json:"Success" xml:"Success"`
	AppName        string `json:"AppName" xml:"AppName"`
}

CallbackTaskResponse is the response struct for api CallbackTask

func CreateCallbackTaskResponse

func CreateCallbackTaskResponse() (response *CallbackTaskResponse)

CreateCallbackTaskResponse creates a response to parse from CallbackTask response

type Client

type Client struct {
	sdk.Client
}

Client is the sdk client struct, each func corresponds to an OpenAPI

func NewClient

func NewClient() (client *Client, err error)

NewClient creates a sdk client with environment variables

func NewClientWithAccessKey

func NewClientWithAccessKey(regionId, accessKeyId, accessKeySecret string) (client *Client, err error)

NewClientWithAccessKey is a shortcut to create sdk client with accesskey usage: https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

func NewClientWithEcsRamRole

func NewClientWithEcsRamRole(regionId string, roleName string) (client *Client, err error)

NewClientWithEcsRamRole is a shortcut to create sdk client with ecs ram role usage: https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

func NewClientWithOptions

func NewClientWithOptions(regionId string, config *sdk.Config, credential auth.Credential) (client *Client, err error)

NewClientWithOptions creates a sdk client with regionId/sdkConfig/credential this is the common api to create a sdk client

func NewClientWithProvider

func NewClientWithProvider(regionId string, providers ...provider.Provider) (client *Client, err error)

NewClientWithProvider creates a sdk client with providers usage: https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

func NewClientWithRamRoleArn

func NewClientWithRamRoleArn(regionId string, accessKeyId, accessKeySecret, roleArn, roleSessionName string) (client *Client, err error)

NewClientWithRamRoleArn is a shortcut to create sdk client with ram roleArn usage: https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

func NewClientWithRamRoleArnAndPolicy

func NewClientWithRamRoleArnAndPolicy(regionId string, accessKeyId, accessKeySecret, roleArn, roleSessionName, policy string) (client *Client, err error)

NewClientWithRamRoleArn is a shortcut to create sdk client with ram roleArn and policy usage: https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

func NewClientWithRsaKeyPair

func NewClientWithRsaKeyPair(regionId string, publicKeyId, privateKey string, sessionExpiration int) (client *Client, err error)

NewClientWithRsaKeyPair is a shortcut to create sdk client with rsa key pair usage: https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

func NewClientWithStsToken

func NewClientWithStsToken(regionId, stsAccessKeyId, stsAccessKeySecret, stsToken string) (client *Client, err error)

NewClientWithStsToken is a shortcut to create sdk client with sts token usage: https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

func (*Client) ActivateLicense

func (client *Client) ActivateLicense(request *ActivateLicenseRequest) (response *ActivateLicenseResponse, err error)

ActivateLicense invokes the mseap.ActivateLicense API synchronously

func (*Client) ActivateLicenseWithCallback

func (client *Client) ActivateLicenseWithCallback(request *ActivateLicenseRequest, callback func(response *ActivateLicenseResponse, err error)) <-chan int

ActivateLicenseWithCallback invokes the mseap.ActivateLicense API asynchronously

func (*Client) ActivateLicenseWithChan

func (client *Client) ActivateLicenseWithChan(request *ActivateLicenseRequest) (<-chan *ActivateLicenseResponse, <-chan error)

ActivateLicenseWithChan invokes the mseap.ActivateLicense API asynchronously

func (*Client) CallbackTask

func (client *Client) CallbackTask(request *CallbackTaskRequest) (response *CallbackTaskResponse, err error)

CallbackTask invokes the mseap.CallbackTask API synchronously

func (*Client) CallbackTaskWithCallback

func (client *Client) CallbackTaskWithCallback(request *CallbackTaskRequest, callback func(response *CallbackTaskResponse, err error)) <-chan int

CallbackTaskWithCallback invokes the mseap.CallbackTask API asynchronously

func (*Client) CallbackTaskWithChan

func (client *Client) CallbackTaskWithChan(request *CallbackTaskRequest) (<-chan *CallbackTaskResponse, <-chan error)

CallbackTaskWithChan invokes the mseap.CallbackTask API asynchronously

func (*Client) DescribeAgreementStatus

func (client *Client) DescribeAgreementStatus(request *DescribeAgreementStatusRequest) (response *DescribeAgreementStatusResponse, err error)

DescribeAgreementStatus invokes the mseap.DescribeAgreementStatus API synchronously

func (*Client) DescribeAgreementStatusWithCallback

func (client *Client) DescribeAgreementStatusWithCallback(request *DescribeAgreementStatusRequest, callback func(response *DescribeAgreementStatusResponse, err error)) <-chan int

DescribeAgreementStatusWithCallback invokes the mseap.DescribeAgreementStatus API asynchronously

func (*Client) DescribeAgreementStatusWithChan

func (client *Client) DescribeAgreementStatusWithChan(request *DescribeAgreementStatusRequest) (<-chan *DescribeAgreementStatusResponse, <-chan error)

DescribeAgreementStatusWithChan invokes the mseap.DescribeAgreementStatus API asynchronously

func (*Client) GenerateUploadFilePolicyForPartner

func (client *Client) GenerateUploadFilePolicyForPartner(request *GenerateUploadFilePolicyForPartnerRequest) (response *GenerateUploadFilePolicyForPartnerResponse, err error)

GenerateUploadFilePolicyForPartner invokes the mseap.GenerateUploadFilePolicyForPartner API synchronously

func (*Client) GenerateUploadFilePolicyForPartnerWithCallback

func (client *Client) GenerateUploadFilePolicyForPartnerWithCallback(request *GenerateUploadFilePolicyForPartnerRequest, callback func(response *GenerateUploadFilePolicyForPartnerResponse, err error)) <-chan int

GenerateUploadFilePolicyForPartnerWithCallback invokes the mseap.GenerateUploadFilePolicyForPartner API asynchronously

func (*Client) GenerateUploadFilePolicyForPartnerWithChan

func (client *Client) GenerateUploadFilePolicyForPartnerWithChan(request *GenerateUploadFilePolicyForPartnerRequest) (<-chan *GenerateUploadFilePolicyForPartnerResponse, <-chan error)

GenerateUploadFilePolicyForPartnerWithChan invokes the mseap.GenerateUploadFilePolicyForPartner API asynchronously

func (*Client) GetNodeByFlowId

func (client *Client) GetNodeByFlowId(request *GetNodeByFlowIdRequest) (response *GetNodeByFlowIdResponse, err error)

GetNodeByFlowId invokes the mseap.GetNodeByFlowId API synchronously

func (*Client) GetNodeByFlowIdWithCallback

func (client *Client) GetNodeByFlowIdWithCallback(request *GetNodeByFlowIdRequest, callback func(response *GetNodeByFlowIdResponse, err error)) <-chan int

GetNodeByFlowIdWithCallback invokes the mseap.GetNodeByFlowId API asynchronously

func (*Client) GetNodeByFlowIdWithChan

func (client *Client) GetNodeByFlowIdWithChan(request *GetNodeByFlowIdRequest) (<-chan *GetNodeByFlowIdResponse, <-chan error)

GetNodeByFlowIdWithChan invokes the mseap.GetNodeByFlowId API asynchronously

func (*Client) GetNodeByTemplateId

func (client *Client) GetNodeByTemplateId(request *GetNodeByTemplateIdRequest) (response *GetNodeByTemplateIdResponse, err error)

GetNodeByTemplateId invokes the mseap.GetNodeByTemplateId API synchronously

func (*Client) GetNodeByTemplateIdWithCallback

func (client *Client) GetNodeByTemplateIdWithCallback(request *GetNodeByTemplateIdRequest, callback func(response *GetNodeByTemplateIdResponse, err error)) <-chan int

GetNodeByTemplateIdWithCallback invokes the mseap.GetNodeByTemplateId API asynchronously

func (*Client) GetNodeByTemplateIdWithChan

func (client *Client) GetNodeByTemplateIdWithChan(request *GetNodeByTemplateIdRequest) (<-chan *GetNodeByTemplateIdResponse, <-chan error)

GetNodeByTemplateIdWithChan invokes the mseap.GetNodeByTemplateId API asynchronously

func (*Client) GetProxyByType

func (client *Client) GetProxyByType(request *GetProxyByTypeRequest) (response *GetProxyByTypeResponse, err error)

GetProxyByType invokes the mseap.GetProxyByType API synchronously

func (*Client) GetProxyByTypeWithCallback

func (client *Client) GetProxyByTypeWithCallback(request *GetProxyByTypeRequest, callback func(response *GetProxyByTypeResponse, err error)) <-chan int

GetProxyByTypeWithCallback invokes the mseap.GetProxyByType API asynchronously

func (*Client) GetProxyByTypeWithChan

func (client *Client) GetProxyByTypeWithChan(request *GetProxyByTypeRequest) (<-chan *GetProxyByTypeResponse, <-chan error)

GetProxyByTypeWithChan invokes the mseap.GetProxyByType API asynchronously

func (*Client) GetRedisValue

func (client *Client) GetRedisValue(request *GetRedisValueRequest) (response *GetRedisValueResponse, err error)

GetRedisValue invokes the mseap.GetRedisValue API synchronously

func (*Client) GetRedisValueWithCallback

func (client *Client) GetRedisValueWithCallback(request *GetRedisValueRequest, callback func(response *GetRedisValueResponse, err error)) <-chan int

GetRedisValueWithCallback invokes the mseap.GetRedisValue API asynchronously

func (*Client) GetRedisValueWithChan

func (client *Client) GetRedisValueWithChan(request *GetRedisValueRequest) (<-chan *GetRedisValueResponse, <-chan error)

GetRedisValueWithChan invokes the mseap.GetRedisValue API asynchronously

func (*Client) GetVariable

func (client *Client) GetVariable(request *GetVariableRequest) (response *GetVariableResponse, err error)

GetVariable invokes the mseap.GetVariable API synchronously

func (*Client) GetVariableWithCallback

func (client *Client) GetVariableWithCallback(request *GetVariableRequest, callback func(response *GetVariableResponse, err error)) <-chan int

GetVariableWithCallback invokes the mseap.GetVariable API asynchronously

func (*Client) GetVariableWithChan

func (client *Client) GetVariableWithChan(request *GetVariableRequest) (<-chan *GetVariableResponse, <-chan error)

GetVariableWithChan invokes the mseap.GetVariable API asynchronously

func (*Client) IdentifyCode

func (client *Client) IdentifyCode(request *IdentifyCodeRequest) (response *IdentifyCodeResponse, err error)

IdentifyCode invokes the mseap.IdentifyCode API synchronously

func (*Client) IdentifyCodeWithCallback

func (client *Client) IdentifyCodeWithCallback(request *IdentifyCodeRequest, callback func(response *IdentifyCodeResponse, err error)) <-chan int

IdentifyCodeWithCallback invokes the mseap.IdentifyCode API asynchronously

func (*Client) IdentifyCodeWithChan

func (client *Client) IdentifyCodeWithChan(request *IdentifyCodeRequest) (<-chan *IdentifyCodeResponse, <-chan error)

IdentifyCodeWithChan invokes the mseap.IdentifyCode API asynchronously

func (*Client) PullRpaModel

func (client *Client) PullRpaModel(request *PullRpaModelRequest) (response *PullRpaModelResponse, err error)

PullRpaModel invokes the mseap.PullRpaModel API synchronously

func (*Client) PullRpaModelWithCallback

func (client *Client) PullRpaModelWithCallback(request *PullRpaModelRequest, callback func(response *PullRpaModelResponse, err error)) <-chan int

PullRpaModelWithCallback invokes the mseap.PullRpaModel API asynchronously

func (*Client) PullRpaModelWithChan

func (client *Client) PullRpaModelWithChan(request *PullRpaModelRequest) (<-chan *PullRpaModelResponse, <-chan error)

PullRpaModelWithChan invokes the mseap.PullRpaModel API asynchronously

func (*Client) PullTask

func (client *Client) PullTask(request *PullTaskRequest) (response *PullTaskResponse, err error)

PullTask invokes the mseap.PullTask API synchronously

func (*Client) PullTaskWithCallback

func (client *Client) PullTaskWithCallback(request *PullTaskRequest, callback func(response *PullTaskResponse, err error)) <-chan int

PullTaskWithCallback invokes the mseap.PullTask API asynchronously

func (*Client) PullTaskWithChan

func (client *Client) PullTaskWithChan(request *PullTaskRequest) (<-chan *PullTaskResponse, <-chan error)

PullTaskWithChan invokes the mseap.PullTask API asynchronously

func (*Client) PushRpaTask

func (client *Client) PushRpaTask(request *PushRpaTaskRequest) (response *PushRpaTaskResponse, err error)

PushRpaTask invokes the mseap.PushRpaTask API synchronously

func (*Client) PushRpaTaskDetail

func (client *Client) PushRpaTaskDetail(request *PushRpaTaskDetailRequest) (response *PushRpaTaskDetailResponse, err error)

PushRpaTaskDetail invokes the mseap.PushRpaTaskDetail API synchronously

func (*Client) PushRpaTaskDetailWithCallback

func (client *Client) PushRpaTaskDetailWithCallback(request *PushRpaTaskDetailRequest, callback func(response *PushRpaTaskDetailResponse, err error)) <-chan int

PushRpaTaskDetailWithCallback invokes the mseap.PushRpaTaskDetail API asynchronously

func (*Client) PushRpaTaskDetailWithChan

func (client *Client) PushRpaTaskDetailWithChan(request *PushRpaTaskDetailRequest) (<-chan *PushRpaTaskDetailResponse, <-chan error)

PushRpaTaskDetailWithChan invokes the mseap.PushRpaTaskDetail API asynchronously

func (*Client) PushRpaTaskWithCallback

func (client *Client) PushRpaTaskWithCallback(request *PushRpaTaskRequest, callback func(response *PushRpaTaskResponse, err error)) <-chan int

PushRpaTaskWithCallback invokes the mseap.PushRpaTask API asynchronously

func (*Client) PushRpaTaskWithChan

func (client *Client) PushRpaTaskWithChan(request *PushRpaTaskRequest) (<-chan *PushRpaTaskResponse, <-chan error)

PushRpaTaskWithChan invokes the mseap.PushRpaTask API asynchronously

func (*Client) SetRedisValue

func (client *Client) SetRedisValue(request *SetRedisValueRequest) (response *SetRedisValueResponse, err error)

SetRedisValue invokes the mseap.SetRedisValue API synchronously

func (*Client) SetRedisValueWithCallback

func (client *Client) SetRedisValueWithCallback(request *SetRedisValueRequest, callback func(response *SetRedisValueResponse, err error)) <-chan int

SetRedisValueWithCallback invokes the mseap.SetRedisValue API asynchronously

func (*Client) SetRedisValueWithChan

func (client *Client) SetRedisValueWithChan(request *SetRedisValueRequest) (<-chan *SetRedisValueResponse, <-chan error)

SetRedisValueWithChan invokes the mseap.SetRedisValue API asynchronously

func (*Client) UpdateAgreementStatus

func (client *Client) UpdateAgreementStatus(request *UpdateAgreementStatusRequest) (response *UpdateAgreementStatusResponse, err error)

UpdateAgreementStatus invokes the mseap.UpdateAgreementStatus API synchronously

func (*Client) UpdateAgreementStatusWithCallback

func (client *Client) UpdateAgreementStatusWithCallback(request *UpdateAgreementStatusRequest, callback func(response *UpdateAgreementStatusResponse, err error)) <-chan int

UpdateAgreementStatusWithCallback invokes the mseap.UpdateAgreementStatus API asynchronously

func (*Client) UpdateAgreementStatusWithChan

func (client *Client) UpdateAgreementStatusWithChan(request *UpdateAgreementStatusRequest) (<-chan *UpdateAgreementStatusResponse, <-chan error)

UpdateAgreementStatusWithChan invokes the mseap.UpdateAgreementStatus API asynchronously

type DescribeAgreementStatusRequest

type DescribeAgreementStatusRequest struct {
	*requests.RpcRequest
	AgreementCode string `position:"Query" name:"AgreementCode"`
}

DescribeAgreementStatusRequest is the request struct for api DescribeAgreementStatus

func CreateDescribeAgreementStatusRequest

func CreateDescribeAgreementStatusRequest() (request *DescribeAgreementStatusRequest)

CreateDescribeAgreementStatusRequest creates a request to invoke DescribeAgreementStatus API

type DescribeAgreementStatusResponse

type DescribeAgreementStatusResponse struct {
	*responses.BaseResponse
	Status        int    `json:"Status" xml:"Status"`
	RequestId     string `json:"RequestId" xml:"RequestId"`
	AgreementCode string `json:"AgreementCode" xml:"AgreementCode"`
	UserId        string `json:"UserId" xml:"UserId"`
}

DescribeAgreementStatusResponse is the response struct for api DescribeAgreementStatus

func CreateDescribeAgreementStatusResponse

func CreateDescribeAgreementStatusResponse() (response *DescribeAgreementStatusResponse)

CreateDescribeAgreementStatusResponse creates a response to parse from DescribeAgreementStatus response

type ErrorArgs

type ErrorArgs struct {
	ErrorArg []string `json:"ErrorArg" xml:"ErrorArg"`
}

ErrorArgs is a nested struct in mseap response

type GenerateUploadFilePolicyForPartnerRequest

type GenerateUploadFilePolicyForPartnerRequest struct {
	*requests.RpcRequest
	FileType string `position:"Query" name:"FileType"`
	BizType  string `position:"Query" name:"BizType"`
	FileName string `position:"Query" name:"FileName"`
}

GenerateUploadFilePolicyForPartnerRequest is the request struct for api GenerateUploadFilePolicyForPartner

func CreateGenerateUploadFilePolicyForPartnerRequest

func CreateGenerateUploadFilePolicyForPartnerRequest() (request *GenerateUploadFilePolicyForPartnerRequest)

CreateGenerateUploadFilePolicyForPartnerRequest creates a request to invoke GenerateUploadFilePolicyForPartner API

type GenerateUploadFilePolicyForPartnerResponse

type GenerateUploadFilePolicyForPartnerResponse struct {
	*responses.BaseResponse
	RequestId      string   `json:"RequestId" xml:"RequestId"`
	HttpStatusCode int      `json:"HttpStatusCode" xml:"HttpStatusCode"`
	DynamicCode    string   `json:"DynamicCode" xml:"DynamicCode"`
	DynamicMessage string   `json:"DynamicMessage" xml:"DynamicMessage"`
	ErrorMsg       string   `json:"ErrorMsg" xml:"ErrorMsg"`
	ErrorCode      string   `json:"ErrorCode" xml:"ErrorCode"`
	Success        bool     `json:"Success" xml:"Success"`
	AllowRetry     bool     `json:"AllowRetry" xml:"AllowRetry"`
	AppName        string   `json:"AppName" xml:"AppName"`
	ErrorArgs      []string `json:"ErrorArgs" xml:"ErrorArgs"`
	Module         Module   `json:"Module" xml:"Module"`
}

GenerateUploadFilePolicyForPartnerResponse is the response struct for api GenerateUploadFilePolicyForPartner

func CreateGenerateUploadFilePolicyForPartnerResponse

func CreateGenerateUploadFilePolicyForPartnerResponse() (response *GenerateUploadFilePolicyForPartnerResponse)

CreateGenerateUploadFilePolicyForPartnerResponse creates a response to parse from GenerateUploadFilePolicyForPartner response

type GetNodeByFlowIdRequest

type GetNodeByFlowIdRequest struct {
	*requests.RpcRequest
	UserCallerParentId          requests.Integer `position:"Query" name:"UserCallerParentId"`
	ApiType                     string           `position:"Query" name:"ApiType"`
	UserMfaPresent              requests.Boolean `position:"Query" name:"UserMfaPresent"`
	UserKp                      string           `position:"Query" name:"UserKp"`
	Lang                        string           `position:"Query" name:"Lang"`
	UserCallerType              string           `position:"Query" name:"UserCallerType"`
	UserSecurityToken           string           `position:"Query" name:"UserSecurityToken"`
	UserAccessKeyId             string           `position:"Query" name:"UserAccessKeyId"`
	AliyunKp                    string           `position:"Query" name:"AliyunKp"`
	UserBid                     string           `position:"Query" name:"UserBid"`
	OriginalRequest             string           `position:"Query" name:"OriginalRequest"`
	UserCallerSecurityTransport requests.Boolean `position:"Query" name:"UserCallerSecurityTransport"`
	UserClientIp                string           `position:"Query" name:"UserClientIp"`
	Bid                         string           `position:"Query" name:"Bid"`
	FlowId                      requests.Integer `position:"Query" name:"FlowId"`
}

GetNodeByFlowIdRequest is the request struct for api GetNodeByFlowId

func CreateGetNodeByFlowIdRequest

func CreateGetNodeByFlowIdRequest() (request *GetNodeByFlowIdRequest)

CreateGetNodeByFlowIdRequest creates a request to invoke GetNodeByFlowId API

type GetNodeByFlowIdResponse

type GetNodeByFlowIdResponse struct {
	*responses.BaseResponse
	AllowRetry     bool   `json:"AllowRetry" xml:"AllowRetry"`
	RequestId      string `json:"RequestId" xml:"RequestId"`
	ErrorMsg       string `json:"ErrorMsg" xml:"ErrorMsg"`
	HttpStatusCode int    `json:"HttpStatusCode" xml:"HttpStatusCode"`
	DynamicCode    string `json:"DynamicCode" xml:"DynamicCode"`
	ErrorCode      string `json:"ErrorCode" xml:"ErrorCode"`
	DynamicMessage string `json:"DynamicMessage" xml:"DynamicMessage"`
	Module         string `json:"Module" xml:"Module"`
	Success        bool   `json:"Success" xml:"Success"`
	AppName        string `json:"AppName" xml:"AppName"`
}

GetNodeByFlowIdResponse is the response struct for api GetNodeByFlowId

func CreateGetNodeByFlowIdResponse

func CreateGetNodeByFlowIdResponse() (response *GetNodeByFlowIdResponse)

CreateGetNodeByFlowIdResponse creates a response to parse from GetNodeByFlowId response

type GetNodeByTemplateIdRequest

type GetNodeByTemplateIdRequest struct {
	*requests.RpcRequest
	UserCallerParentId          requests.Integer `position:"Query" name:"UserCallerParentId"`
	ApiType                     string           `position:"Query" name:"ApiType"`
	UserMfaPresent              requests.Boolean `position:"Query" name:"UserMfaPresent"`
	UserKp                      string           `position:"Query" name:"UserKp"`
	Lang                        string           `position:"Query" name:"Lang"`
	UserCallerType              string           `position:"Query" name:"UserCallerType"`
	UserSecurityToken           string           `position:"Query" name:"UserSecurityToken"`
	UserAccessKeyId             string           `position:"Query" name:"UserAccessKeyId"`
	AliyunKp                    string           `position:"Query" name:"AliyunKp"`
	UserBid                     string           `position:"Query" name:"UserBid"`
	OriginalRequest             string           `position:"Query" name:"OriginalRequest"`
	TemplateId                  requests.Integer `position:"Query" name:"TemplateId"`
	UserCallerSecurityTransport requests.Boolean `position:"Query" name:"UserCallerSecurityTransport"`
	UserClientIp                string           `position:"Query" name:"UserClientIp"`
	Bid                         string           `position:"Query" name:"Bid"`
}

GetNodeByTemplateIdRequest is the request struct for api GetNodeByTemplateId

func CreateGetNodeByTemplateIdRequest

func CreateGetNodeByTemplateIdRequest() (request *GetNodeByTemplateIdRequest)

CreateGetNodeByTemplateIdRequest creates a request to invoke GetNodeByTemplateId API

type GetNodeByTemplateIdResponse

type GetNodeByTemplateIdResponse struct {
	*responses.BaseResponse
	AllowRetry     bool   `json:"AllowRetry" xml:"AllowRetry"`
	RequestId      string `json:"RequestId" xml:"RequestId"`
	ErrorMsg       string `json:"ErrorMsg" xml:"ErrorMsg"`
	HttpStatusCode int    `json:"HttpStatusCode" xml:"HttpStatusCode"`
	DynamicCode    string `json:"DynamicCode" xml:"DynamicCode"`
	ErrorCode      string `json:"ErrorCode" xml:"ErrorCode"`
	DynamicMessage string `json:"DynamicMessage" xml:"DynamicMessage"`
	Module         string `json:"Module" xml:"Module"`
	Success        bool   `json:"Success" xml:"Success"`
	AppName        string `json:"AppName" xml:"AppName"`
}

GetNodeByTemplateIdResponse is the response struct for api GetNodeByTemplateId

func CreateGetNodeByTemplateIdResponse

func CreateGetNodeByTemplateIdResponse() (response *GetNodeByTemplateIdResponse)

CreateGetNodeByTemplateIdResponse creates a response to parse from GetNodeByTemplateId response

type GetProxyByTypeRequest

type GetProxyByTypeRequest struct {
	*requests.RpcRequest
	UserCallerParentId          requests.Integer `position:"Query" name:"UserCallerParentId"`
	Type                        requests.Integer `position:"Query" name:"Type"`
	ApiType                     string           `position:"Query" name:"ApiType"`
	UserMfaPresent              requests.Boolean `position:"Query" name:"UserMfaPresent"`
	UserKp                      string           `position:"Query" name:"UserKp"`
	Lang                        string           `position:"Query" name:"Lang"`
	UserCallerType              string           `position:"Query" name:"UserCallerType"`
	UserSecurityToken           string           `position:"Query" name:"UserSecurityToken"`
	UserAccessKeyId             string           `position:"Query" name:"UserAccessKeyId"`
	AliyunKp                    string           `position:"Query" name:"AliyunKp"`
	UserBid                     string           `position:"Query" name:"UserBid"`
	OriginalRequest             string           `position:"Query" name:"OriginalRequest"`
	UserCallerSecurityTransport requests.Boolean `position:"Query" name:"UserCallerSecurityTransport"`
	UserClientIp                string           `position:"Query" name:"UserClientIp"`
	Bid                         string           `position:"Query" name:"Bid"`
}

GetProxyByTypeRequest is the request struct for api GetProxyByType

func CreateGetProxyByTypeRequest

func CreateGetProxyByTypeRequest() (request *GetProxyByTypeRequest)

CreateGetProxyByTypeRequest creates a request to invoke GetProxyByType API

type GetProxyByTypeResponse

type GetProxyByTypeResponse struct {
	*responses.BaseResponse
	AllowRetry     bool   `json:"AllowRetry" xml:"AllowRetry"`
	RequestId      string `json:"RequestId" xml:"RequestId"`
	ErrorMsg       string `json:"ErrorMsg" xml:"ErrorMsg"`
	HttpStatusCode int    `json:"HttpStatusCode" xml:"HttpStatusCode"`
	DynamicCode    string `json:"DynamicCode" xml:"DynamicCode"`
	ErrorCode      string `json:"ErrorCode" xml:"ErrorCode"`
	DynamicMessage string `json:"DynamicMessage" xml:"DynamicMessage"`
	Module         string `json:"Module" xml:"Module"`
	Success        bool   `json:"Success" xml:"Success"`
	AppName        string `json:"AppName" xml:"AppName"`
}

GetProxyByTypeResponse is the response struct for api GetProxyByType

func CreateGetProxyByTypeResponse

func CreateGetProxyByTypeResponse() (response *GetProxyByTypeResponse)

CreateGetProxyByTypeResponse creates a response to parse from GetProxyByType response

type GetRedisValueRequest

type GetRedisValueRequest struct {
	*requests.RpcRequest
	UserCallerParentId          requests.Integer `position:"Query" name:"UserCallerParentId"`
	ApiType                     string           `position:"Query" name:"ApiType"`
	Timeout                     requests.Integer `position:"Query" name:"Timeout"`
	UserMfaPresent              requests.Boolean `position:"Query" name:"UserMfaPresent"`
	UserKp                      string           `position:"Query" name:"UserKp"`
	Lang                        string           `position:"Query" name:"Lang"`
	Value                       string           `position:"Query" name:"Value"`
	Key                         string           `position:"Query" name:"Key"`
	UserCallerType              string           `position:"Query" name:"UserCallerType"`
	UserSecurityToken           string           `position:"Query" name:"UserSecurityToken"`
	UserAccessKeyId             string           `position:"Query" name:"UserAccessKeyId"`
	AliyunKp                    string           `position:"Query" name:"AliyunKp"`
	UserBid                     string           `position:"Query" name:"UserBid"`
	OriginalRequest             string           `position:"Query" name:"OriginalRequest"`
	UserCallerSecurityTransport requests.Boolean `position:"Query" name:"UserCallerSecurityTransport"`
	UserClientIp                string           `position:"Query" name:"UserClientIp"`
	Bid                         string           `position:"Query" name:"Bid"`
}

GetRedisValueRequest is the request struct for api GetRedisValue

func CreateGetRedisValueRequest

func CreateGetRedisValueRequest() (request *GetRedisValueRequest)

CreateGetRedisValueRequest creates a request to invoke GetRedisValue API

type GetRedisValueResponse

type GetRedisValueResponse struct {
	*responses.BaseResponse
	AllowRetry     bool   `json:"AllowRetry" xml:"AllowRetry"`
	RequestId      string `json:"RequestId" xml:"RequestId"`
	ErrorMsg       string `json:"ErrorMsg" xml:"ErrorMsg"`
	HttpStatusCode int    `json:"HttpStatusCode" xml:"HttpStatusCode"`
	DynamicCode    string `json:"DynamicCode" xml:"DynamicCode"`
	ErrorCode      string `json:"ErrorCode" xml:"ErrorCode"`
	DynamicMessage string `json:"DynamicMessage" xml:"DynamicMessage"`
	Module         string `json:"Module" xml:"Module"`
	Success        bool   `json:"Success" xml:"Success"`
	AppName        string `json:"AppName" xml:"AppName"`
}

GetRedisValueResponse is the response struct for api GetRedisValue

func CreateGetRedisValueResponse

func CreateGetRedisValueResponse() (response *GetRedisValueResponse)

CreateGetRedisValueResponse creates a response to parse from GetRedisValue response

type GetVariableRequest

type GetVariableRequest struct {
	*requests.RpcRequest
	UserCallerParentId          requests.Integer `position:"Query" name:"UserCallerParentId"`
	ApiType                     string           `position:"Query" name:"ApiType"`
	UserMfaPresent              requests.Boolean `position:"Query" name:"UserMfaPresent"`
	UserKp                      string           `position:"Query" name:"UserKp"`
	Lang                        string           `position:"Query" name:"Lang"`
	UserCallerType              string           `position:"Query" name:"UserCallerType"`
	UserSecurityToken           string           `position:"Query" name:"UserSecurityToken"`
	UserAccessKeyId             string           `position:"Query" name:"UserAccessKeyId"`
	AliyunKp                    string           `position:"Query" name:"AliyunKp"`
	UserBid                     string           `position:"Query" name:"UserBid"`
	OriginalRequest             string           `position:"Query" name:"OriginalRequest"`
	TemplateId                  requests.Integer `position:"Query" name:"TemplateId"`
	UserCallerSecurityTransport requests.Boolean `position:"Query" name:"UserCallerSecurityTransport"`
	UserClientIp                string           `position:"Query" name:"UserClientIp"`
	Bid                         string           `position:"Query" name:"Bid"`
}

GetVariableRequest is the request struct for api GetVariable

func CreateGetVariableRequest

func CreateGetVariableRequest() (request *GetVariableRequest)

CreateGetVariableRequest creates a request to invoke GetVariable API

type GetVariableResponse

type GetVariableResponse struct {
	*responses.BaseResponse
	AllowRetry     bool   `json:"AllowRetry" xml:"AllowRetry"`
	RequestId      string `json:"RequestId" xml:"RequestId"`
	ErrorMsg       string `json:"ErrorMsg" xml:"ErrorMsg"`
	HttpStatusCode int    `json:"HttpStatusCode" xml:"HttpStatusCode"`
	DynamicCode    string `json:"DynamicCode" xml:"DynamicCode"`
	ErrorCode      string `json:"ErrorCode" xml:"ErrorCode"`
	DynamicMessage string `json:"DynamicMessage" xml:"DynamicMessage"`
	Module         string `json:"Module" xml:"Module"`
	Success        bool   `json:"Success" xml:"Success"`
	AppName        string `json:"AppName" xml:"AppName"`
}

GetVariableResponse is the response struct for api GetVariable

func CreateGetVariableResponse

func CreateGetVariableResponse() (response *GetVariableResponse)

CreateGetVariableResponse creates a response to parse from GetVariable response

type IdentifyCodeRequest

type IdentifyCodeRequest struct {
	*requests.RpcRequest
	Data                        string           `position:"Query" name:"Data"`
	UserCallerParentId          requests.Integer `position:"Query" name:"UserCallerParentId"`
	Type                        string           `position:"Query" name:"Type"`
	ApiType                     string           `position:"Query" name:"ApiType"`
	UserMfaPresent              requests.Boolean `position:"Query" name:"UserMfaPresent"`
	UserKp                      string           `position:"Query" name:"UserKp"`
	Lang                        string           `position:"Query" name:"Lang"`
	UserCallerType              string           `position:"Query" name:"UserCallerType"`
	UserSecurityToken           string           `position:"Query" name:"UserSecurityToken"`
	UserAccessKeyId             string           `position:"Query" name:"UserAccessKeyId"`
	AliyunKp                    string           `position:"Query" name:"AliyunKp"`
	UserBid                     string           `position:"Query" name:"UserBid"`
	OriginalRequest             string           `position:"Query" name:"OriginalRequest"`
	Label                       string           `position:"Query" name:"Label"`
	UserCallerSecurityTransport requests.Boolean `position:"Query" name:"UserCallerSecurityTransport"`
	UserClientIp                string           `position:"Query" name:"UserClientIp"`
	Bid                         string           `position:"Query" name:"Bid"`
}

IdentifyCodeRequest is the request struct for api IdentifyCode

func CreateIdentifyCodeRequest

func CreateIdentifyCodeRequest() (request *IdentifyCodeRequest)

CreateIdentifyCodeRequest creates a request to invoke IdentifyCode API

type IdentifyCodeResponse

type IdentifyCodeResponse struct {
	*responses.BaseResponse
	AllowRetry     bool   `json:"AllowRetry" xml:"AllowRetry"`
	RequestId      string `json:"RequestId" xml:"RequestId"`
	ErrorMsg       string `json:"ErrorMsg" xml:"ErrorMsg"`
	HttpStatusCode int    `json:"HttpStatusCode" xml:"HttpStatusCode"`
	DynamicCode    string `json:"DynamicCode" xml:"DynamicCode"`
	ErrorCode      string `json:"ErrorCode" xml:"ErrorCode"`
	DynamicMessage string `json:"DynamicMessage" xml:"DynamicMessage"`
	Module         string `json:"Module" xml:"Module"`
	Success        bool   `json:"Success" xml:"Success"`
	AppName        string `json:"AppName" xml:"AppName"`
}

IdentifyCodeResponse is the response struct for api IdentifyCode

func CreateIdentifyCodeResponse

func CreateIdentifyCodeResponse() (response *IdentifyCodeResponse)

CreateIdentifyCodeResponse creates a response to parse from IdentifyCode response

type Module

type Module struct {
	OutTaskId     string `json:"OutTaskId" xml:"OutTaskId"`
	AccessId      string `json:"AccessId" xml:"AccessId"`
	OssUrl        string `json:"OssUrl" xml:"OssUrl"`
	FileDir       string `json:"FileDir" xml:"FileDir"`
	OrderId       string `json:"OrderId" xml:"OrderId"`
	Host          string `json:"Host" xml:"Host"`
	TaskData      string `json:"TaskData" xml:"TaskData"`
	Signature     string `json:"Signature" xml:"Signature"`
	TaskId        string `json:"TaskId" xml:"TaskId"`
	PrincipalKey  string `json:"PrincipalKey" xml:"PrincipalKey"`
	ExpireTime    int64  `json:"ExpireTime" xml:"ExpireTime"`
	EncodedPolicy string `json:"EncodedPolicy" xml:"EncodedPolicy"`
	TaskType      string `json:"TaskType" xml:"TaskType"`
	BizCode       string `json:"BizCode" xml:"BizCode"`
}

Module is a nested struct in mseap response

type PullRpaModelRequest

type PullRpaModelRequest struct {
	*requests.RpcRequest
	UserCallerParentId requests.Integer `position:"Query" name:"UserCallerParentId"`
	ApiType            string           `position:"Query" name:"ApiType"`
	UserMfaPresent     requests.Boolean `position:"Query" name:"UserMfaPresent"`
	UserKp             string           `position:"Query" name:"UserKp"`
	Lang               string           `position:"Query" name:"Lang"`
	UserCallerType     string           `position:"Query" name:"UserCallerType"`
	UserSecurityToken  string           `position:"Query" name:"UserSecurityToken"`
	UserAccessKeyId    string           `position:"Query" name:"UserAccessKeyId"`
	AliyunKp           string           `position:"Query" name:"AliyunKp"`
	UserBid            string           `position:"Query" name:"UserBid"`
	OriginalRequest    string           `position:"Query" name:"OriginalRequest"`
	TemplateId         requests.Integer `position:"Query" name:"TemplateId"`
	UserClientIp       string           `position:"Query" name:"UserClientIp"`
	Bid                string           `position:"Query" name:"Bid"`
}

PullRpaModelRequest is the request struct for api PullRpaModel

func CreatePullRpaModelRequest

func CreatePullRpaModelRequest() (request *PullRpaModelRequest)

CreatePullRpaModelRequest creates a request to invoke PullRpaModel API

type PullRpaModelResponse

type PullRpaModelResponse struct {
	*responses.BaseResponse
	AllowRetry     bool   `json:"AllowRetry" xml:"AllowRetry"`
	RequestId      string `json:"RequestId" xml:"RequestId"`
	ErrorMsg       string `json:"ErrorMsg" xml:"ErrorMsg"`
	HttpStatusCode int    `json:"HttpStatusCode" xml:"HttpStatusCode"`
	DynamicCode    string `json:"DynamicCode" xml:"DynamicCode"`
	ErrorCode      string `json:"ErrorCode" xml:"ErrorCode"`
	DynamicMessage string `json:"DynamicMessage" xml:"DynamicMessage"`
	Module         string `json:"Module" xml:"Module"`
	Success        bool   `json:"Success" xml:"Success"`
	AppName        string `json:"AppName" xml:"AppName"`
}

PullRpaModelResponse is the response struct for api PullRpaModel

func CreatePullRpaModelResponse

func CreatePullRpaModelResponse() (response *PullRpaModelResponse)

CreatePullRpaModelResponse creates a response to parse from PullRpaModel response

type PullTaskRequest

type PullTaskRequest struct {
	*requests.RpcRequest
	UserCallerParentId          requests.Integer `position:"Query" name:"UserCallerParentId"`
	ApiType                     string           `position:"Query" name:"ApiType"`
	UserMfaPresent              requests.Boolean `position:"Query" name:"UserMfaPresent"`
	UserKp                      string           `position:"Query" name:"UserKp"`
	Lang                        string           `position:"Query" name:"Lang"`
	UserCallerType              string           `position:"Query" name:"UserCallerType"`
	TaskType                    string           `position:"Query" name:"TaskType"`
	UserSecurityToken           string           `position:"Query" name:"UserSecurityToken"`
	UserAccessKeyId             string           `position:"Query" name:"UserAccessKeyId"`
	OrderId                     string           `position:"Query" name:"OrderId"`
	AliyunKp                    string           `position:"Query" name:"AliyunKp"`
	UserBid                     string           `position:"Query" name:"UserBid"`
	OriginalRequest             string           `position:"Query" name:"OriginalRequest"`
	PrincipalKey                string           `position:"Query" name:"PrincipalKey"`
	UserCallerSecurityTransport requests.Boolean `position:"Query" name:"UserCallerSecurityTransport"`
	BizCode                     string           `position:"Query" name:"BizCode"`
	UserClientIp                string           `position:"Query" name:"UserClientIp"`
	Bid                         string           `position:"Query" name:"Bid"`
}

PullTaskRequest is the request struct for api PullTask

func CreatePullTaskRequest

func CreatePullTaskRequest() (request *PullTaskRequest)

CreatePullTaskRequest creates a request to invoke PullTask API

type PullTaskResponse

type PullTaskResponse struct {
	*responses.BaseResponse
	AllowRetry     bool   `json:"AllowRetry" xml:"AllowRetry"`
	RequestId      string `json:"RequestId" xml:"RequestId"`
	ErrorMsg       string `json:"ErrorMsg" xml:"ErrorMsg"`
	HttpStatusCode int    `json:"HttpStatusCode" xml:"HttpStatusCode"`
	DynamicCode    string `json:"DynamicCode" xml:"DynamicCode"`
	ErrorCode      string `json:"ErrorCode" xml:"ErrorCode"`
	DynamicMessage string `json:"DynamicMessage" xml:"DynamicMessage"`
	Success        bool   `json:"Success" xml:"Success"`
	AppName        string `json:"AppName" xml:"AppName"`
	Module         Module `json:"Module" xml:"Module"`
}

PullTaskResponse is the response struct for api PullTask

func CreatePullTaskResponse

func CreatePullTaskResponse() (response *PullTaskResponse)

CreatePullTaskResponse creates a response to parse from PullTask response

type PushRpaTaskDetailRequest

type PushRpaTaskDetailRequest struct {
	*requests.RpcRequest
	UserCallerParentId requests.Integer `position:"Query" name:"UserCallerParentId"`
	ApiType            string           `position:"Query" name:"ApiType"`
	ModelDetailId      requests.Integer `position:"Query" name:"ModelDetailId"`
	UserKp             string           `position:"Query" name:"UserKp"`
	Lang               string           `position:"Query" name:"Lang"`
	TaskId             requests.Integer `position:"Query" name:"TaskId"`
	UserCallerType     string           `position:"Query" name:"UserCallerType"`
	UserSecurityToken  string           `position:"Query" name:"UserSecurityToken"`
	UserAccessKeyId    string           `position:"Query" name:"UserAccessKeyId"`
	AliyunKp           string           `position:"Query" name:"AliyunKp"`
	UserBid            string           `position:"Query" name:"UserBid"`
	OriginalRequest    string           `position:"Query" name:"OriginalRequest"`
	InputScreenshot    string           `position:"Query" name:"InputScreenshot"`
	InputData          string           `position:"Query" name:"InputData"`
	OutputData         string           `position:"Query" name:"OutputData"`
	InputHtml          string           `position:"Query" name:"InputHtml"`
	TaskDetailId       requests.Integer `position:"Query" name:"TaskDetailId"`
	OutputHtml         string           `position:"Query" name:"OutputHtml"`
	UserClientIp       string           `position:"Query" name:"UserClientIp"`
	Bid                string           `position:"Query" name:"Bid"`
	OutputScreenshot   string           `position:"Query" name:"OutputScreenshot"`
	Status             requests.Integer `position:"Query" name:"Status"`
}

PushRpaTaskDetailRequest is the request struct for api PushRpaTaskDetail

func CreatePushRpaTaskDetailRequest

func CreatePushRpaTaskDetailRequest() (request *PushRpaTaskDetailRequest)

CreatePushRpaTaskDetailRequest creates a request to invoke PushRpaTaskDetail API

type PushRpaTaskDetailResponse

type PushRpaTaskDetailResponse struct {
	*responses.BaseResponse
	AllowRetry     bool   `json:"AllowRetry" xml:"AllowRetry"`
	RequestId      string `json:"RequestId" xml:"RequestId"`
	ErrorMsg       string `json:"ErrorMsg" xml:"ErrorMsg"`
	HttpStatusCode int    `json:"HttpStatusCode" xml:"HttpStatusCode"`
	DynamicCode    string `json:"DynamicCode" xml:"DynamicCode"`
	ErrorCode      string `json:"ErrorCode" xml:"ErrorCode"`
	DynamicMessage string `json:"DynamicMessage" xml:"DynamicMessage"`
	Module         string `json:"Module" xml:"Module"`
	Success        bool   `json:"Success" xml:"Success"`
	AppName        string `json:"AppName" xml:"AppName"`
}

PushRpaTaskDetailResponse is the response struct for api PushRpaTaskDetail

func CreatePushRpaTaskDetailResponse

func CreatePushRpaTaskDetailResponse() (response *PushRpaTaskDetailResponse)

CreatePushRpaTaskDetailResponse creates a response to parse from PushRpaTaskDetail response

type PushRpaTaskRequest

type PushRpaTaskRequest struct {
	*requests.RpcRequest
	Request            string           `position:"Query" name:"Request"`
	UserCallerParentId requests.Integer `position:"Query" name:"UserCallerParentId"`
	ApiType            string           `position:"Query" name:"ApiType"`
	UserMfaPresent     requests.Boolean `position:"Query" name:"UserMfaPresent"`
	UserKp             string           `position:"Query" name:"UserKp"`
	Lang               string           `position:"Query" name:"Lang"`
	TaskId             requests.Integer `position:"Query" name:"TaskId"`
	UserCallerType     string           `position:"Query" name:"UserCallerType"`
	UserSecurityToken  string           `position:"Query" name:"UserSecurityToken"`
	UserAccessKeyId    string           `position:"Query" name:"UserAccessKeyId"`
	ModelId            requests.Integer `position:"Query" name:"ModelId"`
	AliyunKp           string           `position:"Query" name:"AliyunKp"`
	UserBid            string           `position:"Query" name:"UserBid"`
	OriginalRequest    string           `position:"Query" name:"OriginalRequest"`
	TemplateId         requests.Integer `position:"Query" name:"TemplateId"`
	UserClientIp       string           `position:"Query" name:"UserClientIp"`
	Name               string           `position:"Query" name:"Name"`
	Bid                string           `position:"Query" name:"Bid"`
	Status             requests.Integer `position:"Query" name:"Status"`
}

PushRpaTaskRequest is the request struct for api PushRpaTask

func CreatePushRpaTaskRequest

func CreatePushRpaTaskRequest() (request *PushRpaTaskRequest)

CreatePushRpaTaskRequest creates a request to invoke PushRpaTask API

type PushRpaTaskResponse

type PushRpaTaskResponse struct {
	*responses.BaseResponse
	AllowRetry     bool   `json:"AllowRetry" xml:"AllowRetry"`
	RequestId      string `json:"RequestId" xml:"RequestId"`
	ErrorMsg       string `json:"ErrorMsg" xml:"ErrorMsg"`
	HttpStatusCode int    `json:"HttpStatusCode" xml:"HttpStatusCode"`
	DynamicCode    string `json:"DynamicCode" xml:"DynamicCode"`
	ErrorCode      string `json:"ErrorCode" xml:"ErrorCode"`
	DynamicMessage string `json:"DynamicMessage" xml:"DynamicMessage"`
	Module         string `json:"Module" xml:"Module"`
	Success        bool   `json:"Success" xml:"Success"`
	AppName        string `json:"AppName" xml:"AppName"`
}

PushRpaTaskResponse is the response struct for api PushRpaTask

func CreatePushRpaTaskResponse

func CreatePushRpaTaskResponse() (response *PushRpaTaskResponse)

CreatePushRpaTaskResponse creates a response to parse from PushRpaTask response

type SetRedisValueRequest

type SetRedisValueRequest struct {
	*requests.RpcRequest
	UserCallerParentId requests.Integer `position:"Query" name:"UserCallerParentId"`
	ApiType            string           `position:"Query" name:"ApiType"`
	Timeout            requests.Integer `position:"Query" name:"Timeout"`
	UserMfaPresent     requests.Boolean `position:"Query" name:"UserMfaPresent"`
	UserKp             string           `position:"Query" name:"UserKp"`
	Lang               string           `position:"Query" name:"Lang"`
	Value              string           `position:"Query" name:"Value"`
	Key                string           `position:"Query" name:"Key"`
	UserCallerType     string           `position:"Query" name:"UserCallerType"`
	UserSecurityToken  string           `position:"Query" name:"UserSecurityToken"`
	UserAccessKeyId    string           `position:"Query" name:"UserAccessKeyId"`
	AliyunKp           string           `position:"Query" name:"AliyunKp"`
	UserBid            string           `position:"Query" name:"UserBid"`
	OriginalRequest    string           `position:"Query" name:"OriginalRequest"`
	RequestId          string           `position:"Query" name:"RequestId"`
	UserClientIp       string           `position:"Query" name:"UserClientIp"`
	Bid                string           `position:"Query" name:"Bid"`
}

SetRedisValueRequest is the request struct for api SetRedisValue

func CreateSetRedisValueRequest

func CreateSetRedisValueRequest() (request *SetRedisValueRequest)

CreateSetRedisValueRequest creates a request to invoke SetRedisValue API

type SetRedisValueResponse

type SetRedisValueResponse struct {
	*responses.BaseResponse
	AllowRetry     bool   `json:"AllowRetry" xml:"AllowRetry"`
	RequestId      string `json:"RequestId" xml:"RequestId"`
	ErrorMsg       string `json:"ErrorMsg" xml:"ErrorMsg"`
	HttpStatusCode int    `json:"HttpStatusCode" xml:"HttpStatusCode"`
	DynamicCode    string `json:"DynamicCode" xml:"DynamicCode"`
	ErrorCode      string `json:"ErrorCode" xml:"ErrorCode"`
	DynamicMessage string `json:"DynamicMessage" xml:"DynamicMessage"`
	Module         bool   `json:"Module" xml:"Module"`
	Success        bool   `json:"Success" xml:"Success"`
	AppName        string `json:"AppName" xml:"AppName"`
}

SetRedisValueResponse is the response struct for api SetRedisValue

func CreateSetRedisValueResponse

func CreateSetRedisValueResponse() (response *SetRedisValueResponse)

CreateSetRedisValueResponse creates a response to parse from SetRedisValue response

type UpdateAgreementStatusRequest

type UpdateAgreementStatusRequest struct {
	*requests.RpcRequest
	AgreementCode string `position:"Query" name:"AgreementCode"`
}

UpdateAgreementStatusRequest is the request struct for api UpdateAgreementStatus

func CreateUpdateAgreementStatusRequest

func CreateUpdateAgreementStatusRequest() (request *UpdateAgreementStatusRequest)

CreateUpdateAgreementStatusRequest creates a request to invoke UpdateAgreementStatus API

type UpdateAgreementStatusResponse

type UpdateAgreementStatusResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
}

UpdateAgreementStatusResponse is the response struct for api UpdateAgreementStatus

func CreateUpdateAgreementStatusResponse

func CreateUpdateAgreementStatusResponse() (response *UpdateAgreementStatusResponse)

CreateUpdateAgreementStatusResponse creates a response to parse from UpdateAgreementStatus response

Jump to

Keyboard shortcuts

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