浏览代码

BSSOPENAPI SDK Auto Released By xiaocun.zxc,Version:1.53.61

Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
haowei.yao 6 年之前
父节点
当前提交
3d1476e04d

+ 5 - 0
ChangeLog.txt

@@ -1,3 +1,8 @@
+2019-03-19 Version: 1.53.61
+1, This is an example of release-log.
+2, Please strictly follow this format to edit in English.
+3, Format:Number + , + Space + Description
+
 2019-03-18 Version: 1.53.60
 1, Signature Document SDK.
 2, First version publish.

+ 2 - 0
services/bssopenapi/apply_invoice.go

@@ -82,9 +82,11 @@ type ApplyInvoiceRequest struct {
 	CustomerId      requests.Integer `position:"Query" name:"CustomerId"`
 	SelectedIds     *[]string        `position:"Query" name:"SelectedIds"  type:"Repeated"`
 	ProcessWay      requests.Integer `position:"Query" name:"ProcessWay"`
+	CallerBid       requests.Integer `position:"Query" name:"callerBid"`
 	OwnerId         requests.Integer `position:"Query" name:"OwnerId"`
 	InvoiceAmount   requests.Integer `position:"Query" name:"InvoiceAmount"`
 	AddressId       requests.Integer `position:"Query" name:"AddressId"`
+	CallerUid       requests.Integer `position:"Query" name:"callerUid"`
 }
 
 // ApplyInvoiceResponse is the response struct for api ApplyInvoice

+ 108 - 0
services/bssopenapi/cancel_order.go

@@ -0,0 +1,108 @@
+package bssopenapi
+
+//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"
+)
+
+// CancelOrder invokes the bssopenapi.CancelOrder API synchronously
+// api document: https://help.aliyun.com/api/bssopenapi/cancelorder.html
+func (client *Client) CancelOrder(request *CancelOrderRequest) (response *CancelOrderResponse, err error) {
+	response = CreateCancelOrderResponse()
+	err = client.DoAction(request, response)
+	return
+}
+
+// CancelOrderWithChan invokes the bssopenapi.CancelOrder API asynchronously
+// api document: https://help.aliyun.com/api/bssopenapi/cancelorder.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) CancelOrderWithChan(request *CancelOrderRequest) (<-chan *CancelOrderResponse, <-chan error) {
+	responseChan := make(chan *CancelOrderResponse, 1)
+	errChan := make(chan error, 1)
+	err := client.AddAsyncTask(func() {
+		defer close(responseChan)
+		defer close(errChan)
+		response, err := client.CancelOrder(request)
+		if err != nil {
+			errChan <- err
+		} else {
+			responseChan <- response
+		}
+	})
+	if err != nil {
+		errChan <- err
+		close(responseChan)
+		close(errChan)
+	}
+	return responseChan, errChan
+}
+
+// CancelOrderWithCallback invokes the bssopenapi.CancelOrder API asynchronously
+// api document: https://help.aliyun.com/api/bssopenapi/cancelorder.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) CancelOrderWithCallback(request *CancelOrderRequest, callback func(response *CancelOrderResponse, err error)) <-chan int {
+	result := make(chan int, 1)
+	err := client.AddAsyncTask(func() {
+		var response *CancelOrderResponse
+		var err error
+		defer close(result)
+		response, err = client.CancelOrder(request)
+		callback(response, err)
+		result <- 1
+	})
+	if err != nil {
+		defer close(result)
+		callback(nil, err)
+		result <- 0
+	}
+	return result
+}
+
+// CancelOrderRequest is the request struct for api CancelOrder
+type CancelOrderRequest struct {
+	*requests.RpcRequest
+	OrderId string           `position:"Query" name:"OrderId"`
+	OwnerId requests.Integer `position:"Query" name:"OwnerId"`
+}
+
+// CancelOrderResponse is the response struct for api CancelOrder
+type CancelOrderResponse struct {
+	*responses.BaseResponse
+	RequestId string `json:"RequestId" xml:"RequestId"`
+	Success   bool   `json:"Success" xml:"Success"`
+	Code      string `json:"Code" xml:"Code"`
+	Message   string `json:"Message" xml:"Message"`
+	Data      Data   `json:"Data" xml:"Data"`
+}
+
+// CreateCancelOrderRequest creates a request to invoke CancelOrder API
+func CreateCancelOrderRequest() (request *CancelOrderRequest) {
+	request = &CancelOrderRequest{
+		RpcRequest: &requests.RpcRequest{},
+	}
+	request.InitWithApiInfo("BssOpenApi", "2017-12-14", "CancelOrder", "", "")
+	return
+}
+
+// CreateCancelOrderResponse creates a response to parse from CancelOrder response
+func CreateCancelOrderResponse() (response *CancelOrderResponse) {
+	response = &CancelOrderResponse{
+		BaseResponse: &responses.BaseResponse{},
+	}
+	return
+}

+ 3 - 1
services/bssopenapi/query_customer_address_list.go

@@ -76,7 +76,9 @@ func (client *Client) QueryCustomerAddressListWithCallback(request *QueryCustome
 // QueryCustomerAddressListRequest is the request struct for api QueryCustomerAddressList
 type QueryCustomerAddressListRequest struct {
 	*requests.RpcRequest
-	OwnerId requests.Integer `position:"Query" name:"OwnerId"`
+	CallerBid requests.Integer `position:"Query" name:"callerBid"`
+	OwnerId   requests.Integer `position:"Query" name:"OwnerId"`
+	CallerUid requests.Integer `position:"Query" name:"callerUid"`
 }
 
 // QueryCustomerAddressListResponse is the response struct for api QueryCustomerAddressList

+ 2 - 0
services/bssopenapi/query_evaluate_list.go

@@ -80,6 +80,7 @@ type QueryEvaluateListRequest struct {
 	OutBizId        string           `position:"Query" name:"OutBizId"`
 	SortType        requests.Integer `position:"Query" name:"SortType"`
 	BizTypeList     *[]string        `position:"Query" name:"BizTypeList"  type:"Repeated"`
+	CallerBid       requests.Integer `position:"Query" name:"callerBid"`
 	Type            requests.Integer `position:"Query" name:"Type"`
 	OwnerId         requests.Integer `position:"Query" name:"OwnerId"`
 	PageNum         requests.Integer `position:"Query" name:"PageNum"`
@@ -90,6 +91,7 @@ type QueryEvaluateListRequest struct {
 	BillCycle       string           `position:"Query" name:"BillCycle"`
 	StartAmount     requests.Integer `position:"Query" name:"StartAmount"`
 	StartBizTime    string           `position:"Query" name:"StartBizTime"`
+	CallerUid       requests.Integer `position:"Query" name:"callerUid"`
 }
 
 // QueryEvaluateListResponse is the response struct for api QueryEvaluateList

+ 3 - 1
services/bssopenapi/query_invoicing_customer_list.go

@@ -76,7 +76,9 @@ func (client *Client) QueryInvoicingCustomerListWithCallback(request *QueryInvoi
 // QueryInvoicingCustomerListRequest is the request struct for api QueryInvoicingCustomerList
 type QueryInvoicingCustomerListRequest struct {
 	*requests.RpcRequest
-	OwnerId requests.Integer `position:"Query" name:"OwnerId"`
+	CallerBid requests.Integer `position:"Query" name:"callerBid"`
+	OwnerId   requests.Integer `position:"Query" name:"OwnerId"`
+	CallerUid requests.Integer `position:"Query" name:"callerUid"`
 }
 
 // QueryInvoicingCustomerListResponse is the response struct for api QueryInvoicingCustomerList