cn.com.antcloud.api.riskplus.v1_0.request.QueryCardsmsAnalysisRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of antcloud-api-riskplus Show documentation
Show all versions of antcloud-api-riskplus Show documentation
Ant Chain API SDK For Java
Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//
package cn.com.antcloud.api.riskplus.v1_0.request;
import cn.com.antcloud.api.product.AntCloudProdRequest;
import cn.com.antcloud.api.riskplus.v1_0.response.QueryCardsmsAnalysisResponse;
import java.lang.String;
import javax.validation.constraints.NotNull;
/**
* 营销盾卡短解析服务能力提供接口 */
public class QueryCardsmsAnalysisRequest extends AntCloudProdRequest {
@NotNull
private String cardTemplateCode;
@NotNull
private String phoneNumberJson;
@NotNull
private String cardTemplateParamJson;
@NotNull
private String signNameJson;
private String outId;
public QueryCardsmsAnalysisRequest(String productInstanceId) {
super("riskplus.umkt.cardsms.analysis.query", "1.0", "Java-SDK-20240605", productInstanceId);
}
public QueryCardsmsAnalysisRequest() {
super("riskplus.umkt.cardsms.analysis.query", "1.0", null);
this.setSdkVersion("Java-SDK-20240605");
}
/**
* 租户的卡片短信模板id */
public String getCardTemplateCode() {
return this.cardTemplateCode;
}
/**
* 租户的卡片短信模板id */
public void setCardTemplateCode(String cardTemplateCode) {
this.cardTemplateCode = cardTemplateCode;
}
/**
* 手机号列表,最多10个手机号 */
public String getPhoneNumberJson() {
return this.phoneNumberJson;
}
/**
* 手机号列表,最多10个手机号 */
public void setPhoneNumberJson(String phoneNumberJson) {
this.phoneNumberJson = phoneNumberJson;
}
/**
* 卡片短信模板参数 */
public String getCardTemplateParamJson() {
return this.cardTemplateParamJson;
}
/**
* 卡片短信模板参数 */
public void setCardTemplateParamJson(String cardTemplateParamJson) {
this.cardTemplateParamJson = cardTemplateParamJson;
}
/**
* 短信签名。当前只支持填入一个签名。 */
public String getSignNameJson() {
return this.signNameJson;
}
/**
* 短信签名。当前只支持填入一个签名。 */
public void setSignNameJson(String signNameJson) {
this.signNameJson = signNameJson;
}
/**
* 外部流水扩展字段 */
public String getOutId() {
return this.outId;
}
/**
* 外部流水扩展字段 */
public void setOutId(String outId) {
this.outId = outId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy