com.antgroup.antchain.openapi.riskplus.models.QueryRtopCrowdriskStatisticRequest 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 QueryRtopCrowdriskStatisticRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 结束时间
@NameInMap("end_time")
@Validation(pattern = "\\d{4}[-]\\d{1,2}[-]\\d{1,2}[T]\\d{2}:\\d{2}:\\d{2}([Z]|([\\.]\\d{1,9})?[\\+]\\d{2}[\\:]?\\d{2})")
public String endTime;
// 所在地的名称
@NameInMap("place_name")
public String placeName;
// 地区类型
@NameInMap("place_type")
public String placeType;
// 开始时间
@NameInMap("start_time")
@Validation(pattern = "\\d{4}[-]\\d{1,2}[-]\\d{1,2}[T]\\d{2}:\\d{2}:\\d{2}([Z]|([\\.]\\d{1,9})?[\\+]\\d{2}[\\:]?\\d{2})")
public String startTime;
public static QueryRtopCrowdriskStatisticRequest build(java.util.Map map) throws Exception {
QueryRtopCrowdriskStatisticRequest self = new QueryRtopCrowdriskStatisticRequest();
return TeaModel.build(map, self);
}
public QueryRtopCrowdriskStatisticRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public QueryRtopCrowdriskStatisticRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public QueryRtopCrowdriskStatisticRequest setEndTime(String endTime) {
this.endTime = endTime;
return this;
}
public String getEndTime() {
return this.endTime;
}
public QueryRtopCrowdriskStatisticRequest setPlaceName(String placeName) {
this.placeName = placeName;
return this;
}
public String getPlaceName() {
return this.placeName;
}
public QueryRtopCrowdriskStatisticRequest setPlaceType(String placeType) {
this.placeType = placeType;
return this;
}
public String getPlaceType() {
return this.placeType;
}
public QueryRtopCrowdriskStatisticRequest setStartTime(String startTime) {
this.startTime = startTime;
return this;
}
public String getStartTime() {
return this.startTime;
}
}