com.antgroup.antchain.openapi.riskplus.models.QueryDubbridgeRouterUserselectRequest 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 QueryDubbridgeRouterUserselectRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 订单号
@NameInMap("order_no")
@Validation(required = true)
public String orderNo;
// 身份证号
@NameInMap("card_no")
public String cardNo;
// 手机号
@NameInMap("mobile")
@Validation(required = true)
public String mobile;
// 姓名
@NameInMap("custom_name")
public String customName;
// 机构编码
@NameInMap("platform_no")
public String platformNo;
// 扩展信息JSON
@NameInMap("ext_info")
public String extInfo;
public static QueryDubbridgeRouterUserselectRequest build(java.util.Map map) throws Exception {
QueryDubbridgeRouterUserselectRequest self = new QueryDubbridgeRouterUserselectRequest();
return TeaModel.build(map, self);
}
public QueryDubbridgeRouterUserselectRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public QueryDubbridgeRouterUserselectRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public QueryDubbridgeRouterUserselectRequest setOrderNo(String orderNo) {
this.orderNo = orderNo;
return this;
}
public String getOrderNo() {
return this.orderNo;
}
public QueryDubbridgeRouterUserselectRequest setCardNo(String cardNo) {
this.cardNo = cardNo;
return this;
}
public String getCardNo() {
return this.cardNo;
}
public QueryDubbridgeRouterUserselectRequest setMobile(String mobile) {
this.mobile = mobile;
return this;
}
public String getMobile() {
return this.mobile;
}
public QueryDubbridgeRouterUserselectRequest setCustomName(String customName) {
this.customName = customName;
return this;
}
public String getCustomName() {
return this.customName;
}
public QueryDubbridgeRouterUserselectRequest setPlatformNo(String platformNo) {
this.platformNo = platformNo;
return this;
}
public String getPlatformNo() {
return this.platformNo;
}
public QueryDubbridgeRouterUserselectRequest setExtInfo(String extInfo) {
this.extInfo = extInfo;
return this;
}
public String getExtInfo() {
return this.extInfo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy