com.antgroup.antchain.openapi.realperson.models.QuerySocialriskDetailRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-realperson Show documentation
Show all versions of openapi-realperson Show documentation
Ant Chain REALPERSON SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.realperson.models;
import com.aliyun.tea.*;
public class QuerySocialriskDetailRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 请求ID,为32位以内的字母数字组合,由调用方自行生成、保证唯一并留存,以便问题定位和授权抽查。
@NameInMap("outer_order_no")
@Validation(required = true)
public String outerOrderNo;
// 入参加密模式:
// NONE:不加密;
// RSA:RSA加密;
// SM2:SM2加密。
@NameInMap("enc_type")
@Validation(required = true)
public String encType;
// 姓名(根据enc_type决定加密方式)
@NameInMap("cert_name")
@Validation(required = true)
public String certName;
// 身份证号(根据enc_type决定加密方式)
@NameInMap("cert_no")
@Validation(required = true)
public String certNo;
// 扩展信息,预留字段
@NameInMap("extern_param")
public String externParam;
//
// 场景编号
@NameInMap("scene")
public String scene;
public static QuerySocialriskDetailRequest build(java.util.Map map) throws Exception {
QuerySocialriskDetailRequest self = new QuerySocialriskDetailRequest();
return TeaModel.build(map, self);
}
public QuerySocialriskDetailRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public QuerySocialriskDetailRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public QuerySocialriskDetailRequest setOuterOrderNo(String outerOrderNo) {
this.outerOrderNo = outerOrderNo;
return this;
}
public String getOuterOrderNo() {
return this.outerOrderNo;
}
public QuerySocialriskDetailRequest setEncType(String encType) {
this.encType = encType;
return this;
}
public String getEncType() {
return this.encType;
}
public QuerySocialriskDetailRequest setCertName(String certName) {
this.certName = certName;
return this;
}
public String getCertName() {
return this.certName;
}
public QuerySocialriskDetailRequest setCertNo(String certNo) {
this.certNo = certNo;
return this;
}
public String getCertNo() {
return this.certNo;
}
public QuerySocialriskDetailRequest setExternParam(String externParam) {
this.externParam = externParam;
return this;
}
public String getExternParam() {
return this.externParam;
}
public QuerySocialriskDetailRequest setScene(String scene) {
this.scene = scene;
return this;
}
public String getScene() {
return this.scene;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy