com.aliyun.sas20181203.models.DescribeRiskCheckItemResultResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sas20181203 Show documentation
Show all versions of sas20181203 Show documentation
Alibaba Cloud Threat Detection (20181203) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;
import com.aliyun.tea.*;
public class DescribeRiskCheckItemResultResponseBody extends TeaModel {
/**
* The pagination information.
*/
@NameInMap("PageContentResource")
public DescribeRiskCheckItemResultResponseBodyPageContentResource pageContentResource;
/**
* The ID of the request.
*
* example:
* 3BFB4989-A108-46A4-954E-FF7EF02D1078
*/
@NameInMap("RequestId")
public String requestId;
public static DescribeRiskCheckItemResultResponseBody build(java.util.Map map) throws Exception {
DescribeRiskCheckItemResultResponseBody self = new DescribeRiskCheckItemResultResponseBody();
return TeaModel.build(map, self);
}
public DescribeRiskCheckItemResultResponseBody setPageContentResource(DescribeRiskCheckItemResultResponseBodyPageContentResource pageContentResource) {
this.pageContentResource = pageContentResource;
return this;
}
public DescribeRiskCheckItemResultResponseBodyPageContentResource getPageContentResource() {
return this.pageContentResource;
}
public DescribeRiskCheckItemResultResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class DescribeRiskCheckItemResultResponseBodyPageContentResource extends TeaModel {
/**
* The data of the affected assets on each page in a dynamic table.
*/
@NameInMap("ContentResource")
public java.util.Map contentResource;
/**
* The number of entries returned on the current page.
*
* example:
* 1
*/
@NameInMap("Count")
public Integer count;
/**
* The page number of the returned page.
*
* example:
* 1
*/
@NameInMap("CurrentPage")
public Integer currentPage;
/**
* The total number of pages returned.
*
* example:
* 3
*/
@NameInMap("PageCount")
public Integer pageCount;
/**
* The number of entries returned per page.
*
* example:
* 10
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* The total number of entries returned.
*
* example:
* 1
*/
@NameInMap("TotalCount")
public Integer totalCount;
public static DescribeRiskCheckItemResultResponseBodyPageContentResource build(java.util.Map map) throws Exception {
DescribeRiskCheckItemResultResponseBodyPageContentResource self = new DescribeRiskCheckItemResultResponseBodyPageContentResource();
return TeaModel.build(map, self);
}
public DescribeRiskCheckItemResultResponseBodyPageContentResource setContentResource(java.util.Map contentResource) {
this.contentResource = contentResource;
return this;
}
public java.util.Map getContentResource() {
return this.contentResource;
}
public DescribeRiskCheckItemResultResponseBodyPageContentResource setCount(Integer count) {
this.count = count;
return this;
}
public Integer getCount() {
return this.count;
}
public DescribeRiskCheckItemResultResponseBodyPageContentResource setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public DescribeRiskCheckItemResultResponseBodyPageContentResource setPageCount(Integer pageCount) {
this.pageCount = pageCount;
return this;
}
public Integer getPageCount() {
return this.pageCount;
}
public DescribeRiskCheckItemResultResponseBodyPageContentResource setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public DescribeRiskCheckItemResultResponseBodyPageContentResource setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
public Integer getTotalCount() {
return this.totalCount;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy