Skip to content

Commit

Permalink
Supported insufficient balance check.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed May 10, 2023
1 parent d75efad commit c7a3fe5
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
4 changes: 4 additions & 0 deletions aliyun-java-sdk-dytnsapi/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2023-05-10 Version: 1.1.6
- Supported insufficient balance check.
- Other improvements.

2023-04-28 Version: 1.1.5
- Change api backend.
- Modify error code.
Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-dytnsapi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-dytnsapi</artifactId>
<packaging>jar</packaging>
<version>1.1.5</version>
<version>1.1.6</version>
<name>aliyun-java-sdk-dytnsapi</name>
<url>http://www.aliyun.com</url>
<description>Aliyun Open API SDK for Java
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ public class DescribePhoneNumberOperatorAttributeRequest extends RpcAcsRequest<D

private Long resourceOwnerId;

private String extendFunction;

private String mask;

private String resourceOwnerAccount;
Expand Down Expand Up @@ -56,6 +58,17 @@ public void setResourceOwnerId(Long resourceOwnerId) {
}
}

public String getExtendFunction() {
return this.extendFunction;
}

public void setExtendFunction(String extendFunction) {
this.extendFunction = extendFunction;
if(extendFunction != null){
putQueryParameter("ExtendFunction", extendFunction);
}
}

public String getMask() {
return this.mask;
}
Expand Down

0 comments on commit c7a3fe5

Please sign in to comment.