com.antgroup.antchain.openapi.riskplus.models.BatchqueryQmpTaskDetailRequest 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 BatchqueryQmpTaskDetailRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 上传外呼任务返回的callId
@NameInMap("biz_id")
@Validation(required = true)
public String bizId;
// 手机号列表
@NameInMap("customer_keys")
@Validation(required = true)
public java.util.List customerKeys;
// 手机号类型
@NameInMap("key_template")
@Validation(required = true)
public String keyTemplate;
// 场景策略id
@NameInMap("scene_strategy_id")
@Validation(required = true)
public Long sceneStrategyId;
// 开始外呼时间,只可查询最近30天的日期
@NameInMap("call_date")
public String callDate;
// 结束外呼时间
@NameInMap("end_call_date")
public String endCallDate;
// 分流字段,行业标签区分哈啰流量归属于umkt或qmp
@NameInMap("industry_tag")
public String industryTag;
public static BatchqueryQmpTaskDetailRequest build(java.util.Map map) throws Exception {
BatchqueryQmpTaskDetailRequest self = new BatchqueryQmpTaskDetailRequest();
return TeaModel.build(map, self);
}
public BatchqueryQmpTaskDetailRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public BatchqueryQmpTaskDetailRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public BatchqueryQmpTaskDetailRequest setBizId(String bizId) {
this.bizId = bizId;
return this;
}
public String getBizId() {
return this.bizId;
}
public BatchqueryQmpTaskDetailRequest setCustomerKeys(java.util.List customerKeys) {
this.customerKeys = customerKeys;
return this;
}
public java.util.List getCustomerKeys() {
return this.customerKeys;
}
public BatchqueryQmpTaskDetailRequest setKeyTemplate(String keyTemplate) {
this.keyTemplate = keyTemplate;
return this;
}
public String getKeyTemplate() {
return this.keyTemplate;
}
public BatchqueryQmpTaskDetailRequest setSceneStrategyId(Long sceneStrategyId) {
this.sceneStrategyId = sceneStrategyId;
return this;
}
public Long getSceneStrategyId() {
return this.sceneStrategyId;
}
public BatchqueryQmpTaskDetailRequest setCallDate(String callDate) {
this.callDate = callDate;
return this;
}
public String getCallDate() {
return this.callDate;
}
public BatchqueryQmpTaskDetailRequest setEndCallDate(String endCallDate) {
this.endCallDate = endCallDate;
return this;
}
public String getEndCallDate() {
return this.endCallDate;
}
public BatchqueryQmpTaskDetailRequest setIndustryTag(String industryTag) {
this.industryTag = industryTag;
return this;
}
public String getIndustryTag() {
return this.industryTag;
}
}