Skip to content

Commit

Permalink
Update SegmentCloth.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Jul 30, 2024
1 parent f568f0f commit 6401190
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-imageseg/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-07-30 Version: 1.1.15
- Update SegmentCloth.

2023-12-06 Version: 1.1.14
- Update SegmentCloth.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-imageseg/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-imageseg</artifactId>
<packaging>jar</packaging>
<version>1.1.14</version>
<version>1.1.15</version>
<name>aliyun-java-sdk-imageseg</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 @@ -30,6 +30,8 @@ public class SegmentClothRequest extends RpcAcsRequest<SegmentClothResponse> {

private String returnForm;

private Long outMode;

private String imageURL;
public SegmentClothRequest() {
super("imageseg", "2019-12-30", "SegmentCloth", "imageseg");
Expand Down Expand Up @@ -64,6 +66,17 @@ public void setReturnForm(String returnForm) {
}
}

public Long getOutMode() {
return this.outMode;
}

public void setOutMode(Long outMode) {
this.outMode = outMode;
if(outMode != null){
putQueryParameter("OutMode", outMode.toString());
}
}

public String getImageURL() {
return this.imageURL;
}
Expand Down

0 comments on commit 6401190

Please sign in to comment.