Skip to content

Commit 7264e70

Browse files
committed
DYPLSAPI SDK Auto Released By shenshi,Version:1.1.3
发布日志: 1, Update Dependency
1 parent 6c4d9b3 commit 7264e70

26 files changed

Lines changed: 1120 additions & 12 deletions

aliyun-java-sdk-dyplsapi/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2019-03-21 Version: 1.1.3
2+
1, Update Dependency
3+
14
2018-10-26 Version: 1.1.0
25
1, This is an example of release-log.
36
2, Please strictly follow this format to edit in English.

aliyun-java-sdk-dyplsapi/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>com.aliyun</groupId>
44
<artifactId>aliyun-java-sdk-dyplsapi</artifactId>
55
<packaging>jar</packaging>
6-
<version>1.1.0</version>
6+
<version>1.1.3</version>
77
<name>aliyun-java-sdk-dyplsapi</name>
88
<url>http://www.aliyun.com</url>
99
<description>Aliyun Open API SDK for Java
@@ -31,7 +31,7 @@ http://www.aliyun.com</description>
3131
<groupId>com.aliyun</groupId>
3232
<artifactId>aliyun-java-sdk-core</artifactId>
3333
<optional>true</optional>
34-
<version>4.1.1</version>
34+
<version>[4.3.2,5.0.0)</version>
3535
</dependency>
3636
</dependencies>
3737
<licenses>

aliyun-java-sdk-dyplsapi/src/main/java/com/aliyuncs/dyplsapi/model/v20170525/BindAxbRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
public class BindAxbRequest extends RpcAcsRequest<BindAxbResponse> {
2424

2525
public BindAxbRequest() {
26-
super("Dyplsapi", "2017-05-25", "BindAxb");
26+
super("Dyplsapi", "2017-05-25", "BindAxb", "dyplsapi");
2727
}
2828

2929
private String phoneNoB;
Lines changed: 203 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,203 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.dyplsapi.model.v20170525;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
19+
/**
20+
* @author auto create
21+
* @version
22+
*/
23+
public class BindAxgRequest extends RpcAcsRequest<BindAxgResponse> {
24+
25+
public BindAxgRequest() {
26+
super("Dyplsapi", "2017-05-25", "BindAxg", "dyplsapi");
27+
}
28+
29+
private String phoneNoB;
30+
31+
private String phoneNoA;
32+
33+
private Long resourceOwnerId;
34+
35+
private String expectCity;
36+
37+
private String resourceOwnerAccount;
38+
39+
private String groupId;
40+
41+
private Long ownerId;
42+
43+
private String outOrderId;
44+
45+
private String poolKey;
46+
47+
private String phoneNoX;
48+
49+
private String expiration;
50+
51+
private Boolean isRecordingEnabled;
52+
53+
private String outId;
54+
55+
public String getPhoneNoB() {
56+
return this.phoneNoB;
57+
}
58+
59+
public void setPhoneNoB(String phoneNoB) {
60+
this.phoneNoB = phoneNoB;
61+
if(phoneNoB != null){
62+
putQueryParameter("PhoneNoB", phoneNoB);
63+
}
64+
}
65+
66+
public String getPhoneNoA() {
67+
return this.phoneNoA;
68+
}
69+
70+
public void setPhoneNoA(String phoneNoA) {
71+
this.phoneNoA = phoneNoA;
72+
if(phoneNoA != null){
73+
putQueryParameter("PhoneNoA", phoneNoA);
74+
}
75+
}
76+
77+
public Long getResourceOwnerId() {
78+
return this.resourceOwnerId;
79+
}
80+
81+
public void setResourceOwnerId(Long resourceOwnerId) {
82+
this.resourceOwnerId = resourceOwnerId;
83+
if(resourceOwnerId != null){
84+
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
85+
}
86+
}
87+
88+
public String getExpectCity() {
89+
return this.expectCity;
90+
}
91+
92+
public void setExpectCity(String expectCity) {
93+
this.expectCity = expectCity;
94+
if(expectCity != null){
95+
putQueryParameter("ExpectCity", expectCity);
96+
}
97+
}
98+
99+
public String getResourceOwnerAccount() {
100+
return this.resourceOwnerAccount;
101+
}
102+
103+
public void setResourceOwnerAccount(String resourceOwnerAccount) {
104+
this.resourceOwnerAccount = resourceOwnerAccount;
105+
if(resourceOwnerAccount != null){
106+
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
107+
}
108+
}
109+
110+
public String getGroupId() {
111+
return this.groupId;
112+
}
113+
114+
public void setGroupId(String groupId) {
115+
this.groupId = groupId;
116+
if(groupId != null){
117+
putQueryParameter("GroupId", groupId);
118+
}
119+
}
120+
121+
public Long getOwnerId() {
122+
return this.ownerId;
123+
}
124+
125+
public void setOwnerId(Long ownerId) {
126+
this.ownerId = ownerId;
127+
if(ownerId != null){
128+
putQueryParameter("OwnerId", ownerId.toString());
129+
}
130+
}
131+
132+
public String getOutOrderId() {
133+
return this.outOrderId;
134+
}
135+
136+
public void setOutOrderId(String outOrderId) {
137+
this.outOrderId = outOrderId;
138+
if(outOrderId != null){
139+
putQueryParameter("OutOrderId", outOrderId);
140+
}
141+
}
142+
143+
public String getPoolKey() {
144+
return this.poolKey;
145+
}
146+
147+
public void setPoolKey(String poolKey) {
148+
this.poolKey = poolKey;
149+
if(poolKey != null){
150+
putQueryParameter("PoolKey", poolKey);
151+
}
152+
}
153+
154+
public String getPhoneNoX() {
155+
return this.phoneNoX;
156+
}
157+
158+
public void setPhoneNoX(String phoneNoX) {
159+
this.phoneNoX = phoneNoX;
160+
if(phoneNoX != null){
161+
putQueryParameter("PhoneNoX", phoneNoX);
162+
}
163+
}
164+
165+
public String getExpiration() {
166+
return this.expiration;
167+
}
168+
169+
public void setExpiration(String expiration) {
170+
this.expiration = expiration;
171+
if(expiration != null){
172+
putQueryParameter("Expiration", expiration);
173+
}
174+
}
175+
176+
public Boolean getIsRecordingEnabled() {
177+
return this.isRecordingEnabled;
178+
}
179+
180+
public void setIsRecordingEnabled(Boolean isRecordingEnabled) {
181+
this.isRecordingEnabled = isRecordingEnabled;
182+
if(isRecordingEnabled != null){
183+
putQueryParameter("IsRecordingEnabled", isRecordingEnabled.toString());
184+
}
185+
}
186+
187+
public String getOutId() {
188+
return this.outId;
189+
}
190+
191+
public void setOutId(String outId) {
192+
this.outId = outId;
193+
if(outId != null){
194+
putQueryParameter("OutId", outId);
195+
}
196+
}
197+
198+
@Override
199+
public Class<BindAxgResponse> getResponseClass() {
200+
return BindAxgResponse.class;
201+
}
202+
203+
}
Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.dyplsapi.model.v20170525;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.dyplsapi.transform.v20170525.BindAxgResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class BindAxgResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
private String code;
30+
31+
private String message;
32+
33+
private SecretBindDTO secretBindDTO;
34+
35+
public String getRequestId() {
36+
return this.requestId;
37+
}
38+
39+
public void setRequestId(String requestId) {
40+
this.requestId = requestId;
41+
}
42+
43+
public String getCode() {
44+
return this.code;
45+
}
46+
47+
public void setCode(String code) {
48+
this.code = code;
49+
}
50+
51+
public String getMessage() {
52+
return this.message;
53+
}
54+
55+
public void setMessage(String message) {
56+
this.message = message;
57+
}
58+
59+
public SecretBindDTO getSecretBindDTO() {
60+
return this.secretBindDTO;
61+
}
62+
63+
public void setSecretBindDTO(SecretBindDTO secretBindDTO) {
64+
this.secretBindDTO = secretBindDTO;
65+
}
66+
67+
public static class SecretBindDTO {
68+
69+
private String subsId;
70+
71+
private String secretNo;
72+
73+
private String extension;
74+
75+
public String getSubsId() {
76+
return this.subsId;
77+
}
78+
79+
public void setSubsId(String subsId) {
80+
this.subsId = subsId;
81+
}
82+
83+
public String getSecretNo() {
84+
return this.secretNo;
85+
}
86+
87+
public void setSecretNo(String secretNo) {
88+
this.secretNo = secretNo;
89+
}
90+
91+
public String getExtension() {
92+
return this.extension;
93+
}
94+
95+
public void setExtension(String extension) {
96+
this.extension = extension;
97+
}
98+
}
99+
100+
@Override
101+
public BindAxgResponse getInstance(UnmarshallerContext context) {
102+
return BindAxgResponseUnmarshaller.unmarshall(this, context);
103+
}
104+
}

aliyun-java-sdk-dyplsapi/src/main/java/com/aliyuncs/dyplsapi/model/v20170525/BindAxnExtensionRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
public class BindAxnExtensionRequest extends RpcAcsRequest<BindAxnExtensionResponse> {
2424

2525
public BindAxnExtensionRequest() {
26-
super("Dyplsapi", "2017-05-25", "BindAxnExtension");
26+
super("Dyplsapi", "2017-05-25", "BindAxnExtension", "dyplsapi");
2727
}
2828

2929
private String phoneNoB;

aliyun-java-sdk-dyplsapi/src/main/java/com/aliyuncs/dyplsapi/model/v20170525/BindAxnRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
public class BindAxnRequest extends RpcAcsRequest<BindAxnResponse> {
2424

2525
public BindAxnRequest() {
26-
super("Dyplsapi", "2017-05-25", "BindAxn");
26+
super("Dyplsapi", "2017-05-25", "BindAxn", "dyplsapi");
2727
}
2828

2929
private String phoneNoB;

aliyun-java-sdk-dyplsapi/src/main/java/com/aliyuncs/dyplsapi/model/v20170525/BuySecretNoRequest.java

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
public class BuySecretNoRequest extends RpcAcsRequest<BuySecretNoResponse> {
2424

2525
public BuySecretNoRequest() {
26-
super("Dyplsapi", "2017-05-25", "BuySecretNo");
26+
super("Dyplsapi", "2017-05-25", "BuySecretNo", "dyplsapi");
2727
}
2828

2929
private String poolKey;
@@ -38,6 +38,8 @@ public BuySecretNoRequest() {
3838

3939
private String city;
4040

41+
private Boolean displayPool;
42+
4143
private Long ownerId;
4244

4345
public String getPoolKey() {
@@ -106,6 +108,17 @@ public void setCity(String city) {
106108
}
107109
}
108110

111+
public Boolean getDisplayPool() {
112+
return this.displayPool;
113+
}
114+
115+
public void setDisplayPool(Boolean displayPool) {
116+
this.displayPool = displayPool;
117+
if(displayPool != null){
118+
putQueryParameter("DisplayPool", displayPool.toString());
119+
}
120+
}
121+
109122
public Long getOwnerId() {
110123
return this.ownerId;
111124
}

0 commit comments

Comments
 (0)