services/dysmsapi/update_sms_sign.go (88 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"
)
// UpdateSmsSign invokes the dysmsapi.UpdateSmsSign API synchronously
func (client *Client) UpdateSmsSign(request *UpdateSmsSignRequest) (response *UpdateSmsSignResponse, err error) {
response = CreateUpdateSmsSignResponse()
err = client.DoAction(request, response)
return
}
// UpdateSmsSignWithChan invokes the dysmsapi.UpdateSmsSign API asynchronously
func (client *Client) UpdateSmsSignWithChan(request *UpdateSmsSignRequest) (<-chan *UpdateSmsSignResponse, <-chan error) {
responseChan := make(chan *UpdateSmsSignResponse, 1)
errChan := make(chan error, 1)
err := client.AddAsyncTask(func() {
defer close(responseChan)
defer close(errChan)
response, err := client.UpdateSmsSign(request)
if err != nil {
errChan <- err
} else {
responseChan <- response
}
})
if err != nil {
errChan <- err
close(responseChan)
close(errChan)
}
return responseChan, errChan
}
// UpdateSmsSignWithCallback invokes the dysmsapi.UpdateSmsSign API asynchronously
func (client *Client) UpdateSmsSignWithCallback(request *UpdateSmsSignRequest, callback func(response *UpdateSmsSignResponse, err error)) <-chan int {
result := make(chan int, 1)
err := client.AddAsyncTask(func() {
var response *UpdateSmsSignResponse
var err error
defer close(result)
response, err = client.UpdateSmsSign(request)
callback(response, err)
result <- 1
})
if err != nil {
defer close(result)
callback(nil, err)
result <- 0
}
return result
}
// UpdateSmsSignRequest is the request struct for api UpdateSmsSign
type UpdateSmsSignRequest struct {
*requests.RpcRequest
ResourceOwnerId requests.Integer `position:"Query" name:"ResourceOwnerId"`
ApplySceneContent string `position:"Query" name:"ApplySceneContent"`
MoreData string `position:"Query" name:"MoreData"`
Remark string `position:"Query" name:"Remark"`
ExtendFunction string `position:"Query" name:"ExtendFunction"`
SignName string `position:"Query" name:"SignName"`
ApplySource string `position:"Query" name:"ApplySource"`
RouteName string `position:"Query" name:"RouteName"`
QualificationId requests.Integer `position:"Query" name:"QualificationId"`
ResourceOwnerAccount string `position:"Query" name:"ResourceOwnerAccount"`
ProdCode string `position:"Query" name:"ProdCode"`
SignType requests.Integer `position:"Query" name:"SignType"`
OwnerId requests.Integer `position:"Query" name:"OwnerId"`
ThirdParty requests.Boolean `position:"Query" name:"ThirdParty"`
FileIds string `position:"Query" name:"FileIds"`
SignSource requests.Integer `position:"Query" name:"SignSource"`
}
// UpdateSmsSignResponse is the response struct for api UpdateSmsSign
type UpdateSmsSignResponse struct {
*responses.BaseResponse
RequestId string `json:"RequestId" xml:"RequestId"`
Code string `json:"Code" xml:"Code"`
Message string `json:"Message" xml:"Message"`
SignName string `json:"SignName" xml:"SignName"`
OrderId string `json:"OrderId" xml:"OrderId"`
}
// CreateUpdateSmsSignRequest creates a request to invoke UpdateSmsSign API
func CreateUpdateSmsSignRequest() (request *UpdateSmsSignRequest) {
request = &UpdateSmsSignRequest{
RpcRequest: &requests.RpcRequest{},
}
request.InitWithApiInfo("Dysmsapi", "2017-05-25", "UpdateSmsSign", "dysms", "openAPI")
request.Method = requests.POST
return
}
// CreateUpdateSmsSignResponse creates a response to parse from UpdateSmsSign response
func CreateUpdateSmsSignResponse() (response *UpdateSmsSignResponse) {
response = &UpdateSmsSignResponse{
BaseResponse: &responses.BaseResponse{},
}
return
}