Skip to content

Commit

Permalink
Generated 2022-01-30 for avatar.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Nov 9, 2023
1 parent 9ee22f7 commit 408e554
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-avatar/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2023-11-09 Version: 2.0.4
- Generated 2022-01-30 for `avatar`.

2023-11-01 Version: 2.0.3
- Generated 2022-01-30 for `avatar`.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-avatar/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-avatar</artifactId>
<packaging>jar</packaging>
<version>2.0.3</version>
<version>2.0.4</version>
<name>aliyun-java-sdk-avatar</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 @@ -31,6 +31,8 @@ public class StartInstanceRequest extends RpcAcsRequest<StartInstanceResponse> {

private Long tenantId;

private String bizId;

@SerializedName("channel")
private Channel channel;

Expand Down Expand Up @@ -65,6 +67,17 @@ public void setTenantId(Long tenantId) {
}
}

public String getBizId() {
return this.bizId;
}

public void setBizId(String bizId) {
this.bizId = bizId;
if(bizId != null){
putQueryParameter("BizId", bizId);
}
}

public Channel getChannel() {
return this.channel;
}
Expand Down

0 comments on commit 408e554

Please sign in to comment.