package live //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" ) // DescribeCasterLayouts invokes the live.DescribeCasterLayouts API synchronously // api document: https://help.aliyun.com/api/live/describecasterlayouts.html func (client *Client) DescribeCasterLayouts(request *DescribeCasterLayoutsRequest) (response *DescribeCasterLayoutsResponse, err error) { response = CreateDescribeCasterLayoutsResponse() err = client.DoAction(request, response) return } // DescribeCasterLayoutsWithChan invokes the live.DescribeCasterLayouts API asynchronously // api document: https://help.aliyun.com/api/live/describecasterlayouts.html // asynchronous document: https://help.aliyun.com/document_detail/66220.html func (client *Client) DescribeCasterLayoutsWithChan(request *DescribeCasterLayoutsRequest) (<-chan *DescribeCasterLayoutsResponse, <-chan error) { responseChan := make(chan *DescribeCasterLayoutsResponse, 1) errChan := make(chan error, 1) err := client.AddAsyncTask(func() { defer close(responseChan) defer close(errChan) response, err := client.DescribeCasterLayouts(request) if err != nil { errChan <- err } else { responseChan <- response } }) if err != nil { errChan <- err close(responseChan) close(errChan) } return responseChan, errChan } // DescribeCasterLayoutsWithCallback invokes the live.DescribeCasterLayouts API asynchronously // api document: https://help.aliyun.com/api/live/describecasterlayouts.html // asynchronous document: https://help.aliyun.com/document_detail/66220.html func (client *Client) DescribeCasterLayoutsWithCallback(request *DescribeCasterLayoutsRequest, callback func(response *DescribeCasterLayoutsResponse, err error)) <-chan int { result := make(chan int, 1) err := client.AddAsyncTask(func() { var response *DescribeCasterLayoutsResponse var err error defer close(result) response, err = client.DescribeCasterLayouts(request) callback(response, err) result <- 1 }) if err != nil { defer close(result) callback(nil, err) result <- 0 } return result } // DescribeCasterLayoutsRequest is the request struct for api DescribeCasterLayouts type DescribeCasterLayoutsRequest struct { *requests.RpcRequest CasterId string `position:"Query" name:"CasterId"` OwnerId requests.Integer `position:"Query" name:"OwnerId"` LayoutId string `position:"Query" name:"LayoutId"` } // DescribeCasterLayoutsResponse is the response struct for api DescribeCasterLayouts type DescribeCasterLayoutsResponse struct { *responses.BaseResponse RequestId string `json:"RequestId" xml:"RequestId"` Total int `json:"Total" xml:"Total"` Layouts Layouts `json:"Layouts" xml:"Layouts"` } // CreateDescribeCasterLayoutsRequest creates a request to invoke DescribeCasterLayouts API func CreateDescribeCasterLayoutsRequest() (request *DescribeCasterLayoutsRequest) { request = &DescribeCasterLayoutsRequest{ RpcRequest: &requests.RpcRequest{}, } request.InitWithApiInfo("live", "2016-11-01", "DescribeCasterLayouts", "live", "openAPI") return } // CreateDescribeCasterLayoutsResponse creates a response to parse from DescribeCasterLayouts response func CreateDescribeCasterLayoutsResponse() (response *DescribeCasterLayoutsResponse) { response = &DescribeCasterLayoutsResponse{ BaseResponse: &responses.BaseResponse{}, } return }