com.antgroup.antchain.openapi.demo.models.FaceImage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-demo Show documentation
Show all versions of openapi-demo Show documentation
Ant Chain DEMO SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.demo.models;
import com.aliyun.tea.*;
public class FaceImage extends TeaModel {
// 123
@NameInMap("content")
public String content;
// 213
@NameInMap("rect")
public String rect;
public static FaceImage build(java.util.Map map) throws Exception {
FaceImage self = new FaceImage();
return TeaModel.build(map, self);
}
public FaceImage setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
public FaceImage setRect(String rect) {
this.rect = rect;
return this;
}
public String getRect() {
return this.rect;
}
}