com.antgroup.antchain.openapi.riskplus.models.QueryUmktCardsmsSupportRequest 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 QueryUmktCardsmsSupportRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// cpassAccessKey
@NameInMap("cpass_ak")
public String cpassAk;
// 行业标签
@NameInMap("industry_tag")
@Validation(required = true)
public String industryTag;
// 卡片短信模板
@NameInMap("template_code")
@Validation(required = true)
public String templateCode;
// 手机号
@NameInMap("mobiles")
@Validation(required = true)
public String mobiles;
public static QueryUmktCardsmsSupportRequest build(java.util.Map map) throws Exception {
QueryUmktCardsmsSupportRequest self = new QueryUmktCardsmsSupportRequest();
return TeaModel.build(map, self);
}
public QueryUmktCardsmsSupportRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public QueryUmktCardsmsSupportRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public QueryUmktCardsmsSupportRequest setCpassAk(String cpassAk) {
this.cpassAk = cpassAk;
return this;
}
public String getCpassAk() {
return this.cpassAk;
}
public QueryUmktCardsmsSupportRequest setIndustryTag(String industryTag) {
this.industryTag = industryTag;
return this;
}
public String getIndustryTag() {
return this.industryTag;
}
public QueryUmktCardsmsSupportRequest setTemplateCode(String templateCode) {
this.templateCode = templateCode;
return this;
}
public String getTemplateCode() {
return this.templateCode;
}
public QueryUmktCardsmsSupportRequest setMobiles(String mobiles) {
this.mobiles = mobiles;
return this;
}
public String getMobiles() {
return this.mobiles;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy