package dm //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" ) // SenderStatisticsDetailByParam invokes the dm.SenderStatisticsDetailByParam API synchronously // api document: https://help.aliyun.com/api/dm/senderstatisticsdetailbyparam.html func (client *Client) SenderStatisticsDetailByParam(request *SenderStatisticsDetailByParamRequest) (response *SenderStatisticsDetailByParamResponse, err error) { response = CreateSenderStatisticsDetailByParamResponse() err = client.DoAction(request, response) return } // SenderStatisticsDetailByParamWithChan invokes the dm.SenderStatisticsDetailByParam API asynchronously // api document: https://help.aliyun.com/api/dm/senderstatisticsdetailbyparam.html // asynchronous document: https://help.aliyun.com/document_detail/66220.html func (client *Client) SenderStatisticsDetailByParamWithChan(request *SenderStatisticsDetailByParamRequest) (<-chan *SenderStatisticsDetailByParamResponse, <-chan error) { responseChan := make(chan *SenderStatisticsDetailByParamResponse, 1) errChan := make(chan error, 1) err := client.AddAsyncTask(func() { defer close(responseChan) defer close(errChan) response, err := client.SenderStatisticsDetailByParam(request) if err != nil { errChan <- err } else { responseChan <- response } }) if err != nil { errChan <- err close(responseChan) close(errChan) } return responseChan, errChan } // SenderStatisticsDetailByParamWithCallback invokes the dm.SenderStatisticsDetailByParam API asynchronously // api document: https://help.aliyun.com/api/dm/senderstatisticsdetailbyparam.html // asynchronous document: https://help.aliyun.com/document_detail/66220.html func (client *Client) SenderStatisticsDetailByParamWithCallback(request *SenderStatisticsDetailByParamRequest, callback func(response *SenderStatisticsDetailByParamResponse, err error)) <-chan int { result := make(chan int, 1) err := client.AddAsyncTask(func() { var response *SenderStatisticsDetailByParamResponse var err error defer close(result) response, err = client.SenderStatisticsDetailByParam(request) callback(response, err) result <- 1 }) if err != nil { defer close(result) callback(nil, err) result <- 0 } return result } // SenderStatisticsDetailByParamRequest is the request struct for api SenderStatisticsDetailByParam type SenderStatisticsDetailByParamRequest struct { *requests.RpcRequest OwnerId requests.Integer `position:"Query" name:"OwnerId"` ResourceOwnerAccount string `position:"Query" name:"ResourceOwnerAccount"` ResourceOwnerId requests.Integer `position:"Query" name:"ResourceOwnerId"` AccountName string `position:"Query" name:"AccountName"` ToAddress string `position:"Query" name:"ToAddress"` Status requests.Integer `position:"Query" name:"Status"` StartTime string `position:"Query" name:"StartTime"` EndTime string `position:"Query" name:"EndTime"` TagName string `position:"Query" name:"TagName"` Length requests.Integer `position:"Query" name:"Length"` NextStart string `position:"Query" name:"NextStart"` } // SenderStatisticsDetailByParamResponse is the response struct for api SenderStatisticsDetailByParam type SenderStatisticsDetailByParamResponse struct { *responses.BaseResponse RequestId string `json:"RequestId" xml:"RequestId"` NextStart int `json:"NextStart" xml:"NextStart"` Data DataInSenderStatisticsDetailByParam `json:"data" xml:"data"` } // CreateSenderStatisticsDetailByParamRequest creates a request to invoke SenderStatisticsDetailByParam API func CreateSenderStatisticsDetailByParamRequest() (request *SenderStatisticsDetailByParamRequest) { request = &SenderStatisticsDetailByParamRequest{ RpcRequest: &requests.RpcRequest{}, } request.InitWithApiInfo("Dm", "2015-11-23", "SenderStatisticsDetailByParam", "", "") return } // CreateSenderStatisticsDetailByParamResponse creates a response to parse from SenderStatisticsDetailByParam response func CreateSenderStatisticsDetailByParamResponse() (response *SenderStatisticsDetailByParamResponse) { response = &SenderStatisticsDetailByParamResponse{ BaseResponse: &responses.BaseResponse{}, } return }