com.antgroup.antchain.openapi.riskplus.models.QueryRtopCompanyOpinionRequest 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 QueryRtopCompanyOpinionRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 结束时间
@NameInMap("end_time")
@Validation(required = true, 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("page_num")
@Validation(required = true)
public Long pageNum;
// 一页的数量
@NameInMap("page_size")
@Validation(required = true)
public Long pageSize;
// 所在地的名称
@NameInMap("place_name")
@Validation(required = true)
public String placeName;
// 地区类型
@NameInMap("place_type")
@Validation(required = true)
public String placeType;
// 开始时间
@NameInMap("start_time")
@Validation(required = true, 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 QueryRtopCompanyOpinionRequest build(java.util.Map map) throws Exception {
QueryRtopCompanyOpinionRequest self = new QueryRtopCompanyOpinionRequest();
return TeaModel.build(map, self);
}
public QueryRtopCompanyOpinionRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public QueryRtopCompanyOpinionRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public QueryRtopCompanyOpinionRequest setEndTime(String endTime) {
this.endTime = endTime;
return this;
}
public String getEndTime() {
return this.endTime;
}
public QueryRtopCompanyOpinionRequest setPageNum(Long pageNum) {
this.pageNum = pageNum;
return this;
}
public Long getPageNum() {
return this.pageNum;
}
public QueryRtopCompanyOpinionRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public QueryRtopCompanyOpinionRequest setPlaceName(String placeName) {
this.placeName = placeName;
return this;
}
public String getPlaceName() {
return this.placeName;
}
public QueryRtopCompanyOpinionRequest setPlaceType(String placeType) {
this.placeType = placeType;
return this;
}
public String getPlaceType() {
return this.placeType;
}
public QueryRtopCompanyOpinionRequest setStartTime(String startTime) {
this.startTime = startTime;
return this;
}
public String getStartTime() {
return this.startTime;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy