services/dysmsapi/add_ext_code_sign.go (83 lines of code) (raw):

package dysmsapi //Licensed under the Apache License, Version 2.0 (the "License"); //you may not use this file except in compliance with the License. //You may obtain a copy of the License at // //http://www.apache.org/licenses/LICENSE-2.0 // //Unless required by applicable law or agreed to in writing, software //distributed under the License is distributed on an "AS IS" BASIS, //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. //See the License for the specific language governing permissions and //limitations under the License. // // Code generated by Alibaba Cloud SDK Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. import ( "github.com/aliyun/alibaba-cloud-sdk-go/sdk/requests" "github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses" ) // AddExtCodeSign invokes the dysmsapi.AddExtCodeSign API synchronously func (client *Client) AddExtCodeSign(request *AddExtCodeSignRequest) (response *AddExtCodeSignResponse, err error) { response = CreateAddExtCodeSignResponse() err = client.DoAction(request, response) return } // AddExtCodeSignWithChan invokes the dysmsapi.AddExtCodeSign API asynchronously func (client *Client) AddExtCodeSignWithChan(request *AddExtCodeSignRequest) (<-chan *AddExtCodeSignResponse, <-chan error) { responseChan := make(chan *AddExtCodeSignResponse, 1) errChan := make(chan error, 1) err := client.AddAsyncTask(func() { defer close(responseChan) defer close(errChan) response, err := client.AddExtCodeSign(request) if err != nil { errChan <- err } else { responseChan <- response } }) if err != nil { errChan <- err close(responseChan) close(errChan) } return responseChan, errChan } // AddExtCodeSignWithCallback invokes the dysmsapi.AddExtCodeSign API asynchronously func (client *Client) AddExtCodeSignWithCallback(request *AddExtCodeSignRequest, callback func(response *AddExtCodeSignResponse, err error)) <-chan int { result := make(chan int, 1) err := client.AddAsyncTask(func() { var response *AddExtCodeSignResponse var err error defer close(result) response, err = client.AddExtCodeSign(request) callback(response, err) result <- 1 }) if err != nil { defer close(result) callback(nil, err) result <- 0 } return result } // AddExtCodeSignRequest is the request struct for api AddExtCodeSign type AddExtCodeSignRequest struct { *requests.RpcRequest ResourceOwnerId requests.Integer `position:"Query" name:"ResourceOwnerId"` LowcodeTenantId string `position:"Query" name:"LowcodeTenantId"` ExtendFunction string `position:"Query" name:"ExtendFunction"` LowcodePhysicAppName string `position:"Query" name:"LowcodePhysicAppName"` SignName string `position:"Query" name:"SignName"` RouteName string `position:"Query" name:"RouteName"` ExtCode string `position:"Query" name:"ExtCode"` ResourceOwnerAccount string `position:"Query" name:"ResourceOwnerAccount"` OwnerId requests.Integer `position:"Query" name:"OwnerId"` LowcodeLogicAppName string `position:"Query" name:"LowcodeLogicAppName"` } // AddExtCodeSignResponse is the response struct for api AddExtCodeSign type AddExtCodeSignResponse struct { *responses.BaseResponse AccessDeniedDetail string `json:"AccessDeniedDetail" xml:"AccessDeniedDetail"` RequestId string `json:"RequestId" xml:"RequestId"` Message string `json:"Message" xml:"Message"` Data bool `json:"Data" xml:"Data"` Code string `json:"Code" xml:"Code"` Success bool `json:"Success" xml:"Success"` } // CreateAddExtCodeSignRequest creates a request to invoke AddExtCodeSign API func CreateAddExtCodeSignRequest() (request *AddExtCodeSignRequest) { request = &AddExtCodeSignRequest{ RpcRequest: &requests.RpcRequest{}, } request.InitWithApiInfo("Dysmsapi", "2017-05-25", "AddExtCodeSign", "dysms", "openAPI") request.Method = requests.POST return } // CreateAddExtCodeSignResponse creates a response to parse from AddExtCodeSign response func CreateAddExtCodeSignResponse() (response *AddExtCodeSignResponse) { response = &AddExtCodeSignResponse{ BaseResponse: &responses.BaseResponse{}, } return }