Skip to content

Commit

Permalink
Generated 2021-09-31 for BPStudio.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Oct 10, 2024
1 parent ec2f99e commit 8eb7a8d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-bpstudio/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-10-10 Version: 2.0.11
- Generated 2021-09-31 for `BPStudio`.

2024-09-27 Version: 2.0.10
- Generated 2021-09-31 for `BPStudio`.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-bpstudio/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-bpstudio</artifactId>
<packaging>jar</packaging>
<version>2.0.10</version>
<version>2.0.11</version>
<name>aliyun-java-sdk-bpstudio</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 @@ -107,6 +107,8 @@ public static class Item {

private String attribute;

private String error;

public String getResourceId() {
return this.resourceId;
}
Expand Down Expand Up @@ -146,6 +148,14 @@ public String getAttribute() {
public void setAttribute(String attribute) {
this.attribute = attribute;
}

public String getError() {
return this.error;
}

public void setError(String error) {
this.error = error;
}
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public static GetResource4ModifyRecordResponse unmarshall(GetResource4ModifyReco
item.setStatus(_ctx.stringValue("GetResource4ModifyRecordResponse.Data["+ i +"].Status"));
item.setModifyTime(_ctx.stringValue("GetResource4ModifyRecordResponse.Data["+ i +"].ModifyTime"));
item.setAttribute(_ctx.stringValue("GetResource4ModifyRecordResponse.Data["+ i +"].Attribute"));
item.setError(_ctx.stringValue("GetResource4ModifyRecordResponse.Data["+ i +"].Error"));

data.add(item);
}
Expand Down

0 comments on commit 8eb7a8d

Please sign in to comment.