com.antgroup.antchain.openapi.riskplus.models.QueryRtopRisklabelConfigRequest 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 QueryRtopRisklabelConfigRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// page_no
@NameInMap("page_no")
@Validation(required = true)
public Long pageNo;
// page_size
@NameInMap("page_size")
@Validation(required = true)
public Long pageSize;
public static QueryRtopRisklabelConfigRequest build(java.util.Map map) throws Exception {
QueryRtopRisklabelConfigRequest self = new QueryRtopRisklabelConfigRequest();
return TeaModel.build(map, self);
}
public QueryRtopRisklabelConfigRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public QueryRtopRisklabelConfigRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public QueryRtopRisklabelConfigRequest setPageNo(Long pageNo) {
this.pageNo = pageNo;
return this;
}
public Long getPageNo() {
return this.pageNo;
}
public QueryRtopRisklabelConfigRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy