com.antgroup.antchain.openapi.riskplus.models.SecurityDataQueryStruct Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-riskplus Show documentation
Show all versions of openapi-riskplus Show documentation
Ant Chain RISKPLUS SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.riskplus.models;
import com.aliyun.tea.*;
public class SecurityDataQueryStruct extends TeaModel {
// 请求数据参数
@NameInMap("params")
@Validation(required = true)
public String params;
// 请求数据类型
@NameInMap("type")
@Validation(required = true)
public String type;
// 请求数据版本
@NameInMap("version")
@Validation(required = true)
public String version;
public static SecurityDataQueryStruct build(java.util.Map map) throws Exception {
SecurityDataQueryStruct self = new SecurityDataQueryStruct();
return TeaModel.build(map, self);
}
public SecurityDataQueryStruct setParams(String params) {
this.params = params;
return this;
}
public String getParams() {
return this.params;
}
public SecurityDataQueryStruct setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public SecurityDataQueryStruct setVersion(String version) {
this.version = version;
return this;
}
public String getVersion() {
return this.version;
}
}