com.aliyun.green20220302.models.DescribeImageResultExtRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of green20220302 Show documentation
Show all versions of green20220302 Show documentation
Alibaba Cloud Green (20220302) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.green20220302.models;
import com.aliyun.tea.*;
public class DescribeImageResultExtRequest extends TeaModel {
/**
* The content of the information to be obtained. Multiple values are separated by commas.
*
* example:
* customImage,textInImage
*/
@NameInMap("InfoType")
public String infoType;
/**
* The reqId field returned by the Url Async Moderation API.
*
* example:
* 638EDDC65C82AB39319A9F60
*/
@NameInMap("ReqId")
public String reqId;
public static DescribeImageResultExtRequest build(java.util.Map map) throws Exception {
DescribeImageResultExtRequest self = new DescribeImageResultExtRequest();
return TeaModel.build(map, self);
}
public DescribeImageResultExtRequest setInfoType(String infoType) {
this.infoType = infoType;
return this;
}
public String getInfoType() {
return this.infoType;
}
public DescribeImageResultExtRequest setReqId(String reqId) {
this.reqId = reqId;
return this;
}
public String getReqId() {
return this.reqId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy