Browse Source

Generated 2017-05-25 for Dyplsapi.

sdk-team 5 years ago
parent
commit
bbf4093ff4

+ 4 - 0
ChangeLog.txt

@@ -1,3 +1,7 @@
+2020-02-28 Version: v1.61.18
+- Generated 2017-05-25 for `Dyplsapi`.
+- Add QueryPhoneNoAByTrackNo  and AddAxnTrackNo.
+
 2020-02-28 Version: v1.61.17
 - Generated 2016-04-28 for `Vpc`.
 - Supported for eip operation idempotence.

+ 111 - 0
services/dyplsapi/add_axn_track_no.go

@@ -0,0 +1,111 @@
+package dyplsapi
+
+//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"
+)
+
+// AddAxnTrackNo invokes the dyplsapi.AddAxnTrackNo API synchronously
+// api document: https://help.aliyun.com/api/dyplsapi/addaxntrackno.html
+func (client *Client) AddAxnTrackNo(request *AddAxnTrackNoRequest) (response *AddAxnTrackNoResponse, err error) {
+	response = CreateAddAxnTrackNoResponse()
+	err = client.DoAction(request, response)
+	return
+}
+
+// AddAxnTrackNoWithChan invokes the dyplsapi.AddAxnTrackNo API asynchronously
+// api document: https://help.aliyun.com/api/dyplsapi/addaxntrackno.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) AddAxnTrackNoWithChan(request *AddAxnTrackNoRequest) (<-chan *AddAxnTrackNoResponse, <-chan error) {
+	responseChan := make(chan *AddAxnTrackNoResponse, 1)
+	errChan := make(chan error, 1)
+	err := client.AddAsyncTask(func() {
+		defer close(responseChan)
+		defer close(errChan)
+		response, err := client.AddAxnTrackNo(request)
+		if err != nil {
+			errChan <- err
+		} else {
+			responseChan <- response
+		}
+	})
+	if err != nil {
+		errChan <- err
+		close(responseChan)
+		close(errChan)
+	}
+	return responseChan, errChan
+}
+
+// AddAxnTrackNoWithCallback invokes the dyplsapi.AddAxnTrackNo API asynchronously
+// api document: https://help.aliyun.com/api/dyplsapi/addaxntrackno.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) AddAxnTrackNoWithCallback(request *AddAxnTrackNoRequest, callback func(response *AddAxnTrackNoResponse, err error)) <-chan int {
+	result := make(chan int, 1)
+	err := client.AddAsyncTask(func() {
+		var response *AddAxnTrackNoResponse
+		var err error
+		defer close(result)
+		response, err = client.AddAxnTrackNo(request)
+		callback(response, err)
+		result <- 1
+	})
+	if err != nil {
+		defer close(result)
+		callback(nil, err)
+		result <- 0
+	}
+	return result
+}
+
+// AddAxnTrackNoRequest is the request struct for api AddAxnTrackNo
+type AddAxnTrackNoRequest struct {
+	*requests.RpcRequest
+	ResourceOwnerId      requests.Integer `position:"Query" name:"ResourceOwnerId"`
+	SubsId               string           `position:"Query" name:"SubsId"`
+	PhoneNoX             string           `position:"Query" name:"PhoneNoX"`
+	ResourceOwnerAccount string           `position:"Query" name:"ResourceOwnerAccount"`
+	OwnerId              requests.Integer `position:"Query" name:"OwnerId"`
+	TrackNo              string           `position:"Query" name:"trackNo"`
+	PoolKey              string           `position:"Query" name:"PoolKey"`
+}
+
+// AddAxnTrackNoResponse is the response struct for api AddAxnTrackNo
+type AddAxnTrackNoResponse struct {
+	*responses.BaseResponse
+	RequestId string `json:"RequestId" xml:"RequestId"`
+	Code      string `json:"Code" xml:"Code"`
+	Message   string `json:"Message" xml:"Message"`
+}
+
+// CreateAddAxnTrackNoRequest creates a request to invoke AddAxnTrackNo API
+func CreateAddAxnTrackNoRequest() (request *AddAxnTrackNoRequest) {
+	request = &AddAxnTrackNoRequest{
+		RpcRequest: &requests.RpcRequest{},
+	}
+	request.InitWithApiInfo("Dyplsapi", "2017-05-25", "AddAxnTrackNo", "dypls", "openAPI")
+	return
+}
+
+// CreateAddAxnTrackNoResponse creates a response to parse from AddAxnTrackNo response
+func CreateAddAxnTrackNoResponse() (response *AddAxnTrackNoResponse) {
+	response = &AddAxnTrackNoResponse{
+		BaseResponse: &responses.BaseResponse{},
+	}
+	return
+}

+ 1 - 0
services/dyplsapi/bind_axb.go

@@ -90,6 +90,7 @@ type BindAxbRequest struct {
 	Expiration           string           `position:"Query" name:"Expiration"`
 	IsRecordingEnabled   requests.Boolean `position:"Query" name:"IsRecordingEnabled"`
 	OutId                string           `position:"Query" name:"OutId"`
+	CallRestrict         string           `position:"Query" name:"CallRestrict"`
 }
 
 // BindAxbResponse is the response struct for api BindAxb

+ 110 - 0
services/dyplsapi/query_phone_no_a_by_track_no.go

@@ -0,0 +1,110 @@
+package dyplsapi
+
+//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"
+)
+
+// QueryPhoneNoAByTrackNo invokes the dyplsapi.QueryPhoneNoAByTrackNo API synchronously
+// api document: https://help.aliyun.com/api/dyplsapi/queryphonenoabytrackno.html
+func (client *Client) QueryPhoneNoAByTrackNo(request *QueryPhoneNoAByTrackNoRequest) (response *QueryPhoneNoAByTrackNoResponse, err error) {
+	response = CreateQueryPhoneNoAByTrackNoResponse()
+	err = client.DoAction(request, response)
+	return
+}
+
+// QueryPhoneNoAByTrackNoWithChan invokes the dyplsapi.QueryPhoneNoAByTrackNo API asynchronously
+// api document: https://help.aliyun.com/api/dyplsapi/queryphonenoabytrackno.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) QueryPhoneNoAByTrackNoWithChan(request *QueryPhoneNoAByTrackNoRequest) (<-chan *QueryPhoneNoAByTrackNoResponse, <-chan error) {
+	responseChan := make(chan *QueryPhoneNoAByTrackNoResponse, 1)
+	errChan := make(chan error, 1)
+	err := client.AddAsyncTask(func() {
+		defer close(responseChan)
+		defer close(errChan)
+		response, err := client.QueryPhoneNoAByTrackNo(request)
+		if err != nil {
+			errChan <- err
+		} else {
+			responseChan <- response
+		}
+	})
+	if err != nil {
+		errChan <- err
+		close(responseChan)
+		close(errChan)
+	}
+	return responseChan, errChan
+}
+
+// QueryPhoneNoAByTrackNoWithCallback invokes the dyplsapi.QueryPhoneNoAByTrackNo API asynchronously
+// api document: https://help.aliyun.com/api/dyplsapi/queryphonenoabytrackno.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) QueryPhoneNoAByTrackNoWithCallback(request *QueryPhoneNoAByTrackNoRequest, callback func(response *QueryPhoneNoAByTrackNoResponse, err error)) <-chan int {
+	result := make(chan int, 1)
+	err := client.AddAsyncTask(func() {
+		var response *QueryPhoneNoAByTrackNoResponse
+		var err error
+		defer close(result)
+		response, err = client.QueryPhoneNoAByTrackNo(request)
+		callback(response, err)
+		result <- 1
+	})
+	if err != nil {
+		defer close(result)
+		callback(nil, err)
+		result <- 0
+	}
+	return result
+}
+
+// QueryPhoneNoAByTrackNoRequest is the request struct for api QueryPhoneNoAByTrackNo
+type QueryPhoneNoAByTrackNoRequest struct {
+	*requests.RpcRequest
+	ResourceOwnerId      requests.Integer `position:"Query" name:"ResourceOwnerId"`
+	ResourceOwnerAccount string           `position:"Query" name:"ResourceOwnerAccount"`
+	OwnerId              requests.Integer `position:"Query" name:"OwnerId"`
+	TrackNo              string           `position:"Query" name:"trackNo"`
+	PhoneNoX             string           `position:"Query" name:"PhoneNoX"`
+}
+
+// QueryPhoneNoAByTrackNoResponse is the response struct for api QueryPhoneNoAByTrackNo
+type QueryPhoneNoAByTrackNoResponse struct {
+	*responses.BaseResponse
+	RequestId string `json:"RequestId" xml:"RequestId"`
+	Code      string `json:"Code" xml:"Code"`
+	Message   string `json:"Message" xml:"Message"`
+	Module    Module `json:"Module" xml:"Module"`
+}
+
+// CreateQueryPhoneNoAByTrackNoRequest creates a request to invoke QueryPhoneNoAByTrackNo API
+func CreateQueryPhoneNoAByTrackNoRequest() (request *QueryPhoneNoAByTrackNoRequest) {
+	request = &QueryPhoneNoAByTrackNoRequest{
+		RpcRequest: &requests.RpcRequest{},
+	}
+	request.InitWithApiInfo("Dyplsapi", "2017-05-25", "QueryPhoneNoAByTrackNo", "dypls", "openAPI")
+	return
+}
+
+// CreateQueryPhoneNoAByTrackNoResponse creates a response to parse from QueryPhoneNoAByTrackNo response
+func CreateQueryPhoneNoAByTrackNoResponse() (response *QueryPhoneNoAByTrackNoResponse) {
+	response = &QueryPhoneNoAByTrackNoResponse{
+		BaseResponse: &responses.BaseResponse{},
+	}
+	return
+}

+ 21 - 0
services/dyplsapi/struct_module.go

@@ -0,0 +1,21 @@
+package dyplsapi
+
+//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.
+
+// Module is a nested struct in dyplsapi response
+type Module struct {
+	PhoneNoAInfo []PhoneNoAInfo `json:"phoneNoAInfo" xml:"phoneNoAInfo"`
+}

+ 22 - 0
services/dyplsapi/struct_phone_no_a_info.go

@@ -0,0 +1,22 @@
+package dyplsapi
+
+//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.
+
+// PhoneNoAInfo is a nested struct in dyplsapi response
+type PhoneNoAInfo struct {
+	PhoneNoA string `json:"PhoneNoA" xml:"PhoneNoA"`
+	PhoneNoX string `json:"PhoneNoX" xml:"PhoneNoX"`
+}