com.aliyun.sas20181203.models.DescribeExcludeSystemPathRequest 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 DescribeExcludeSystemPathRequest extends TeaModel {
/**
* The number of the page to return. Default value: 1.
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("CurrentPage")
public Integer currentPage;
/**
* The number of entries to return on each page.
* This parameter is required.
*
* example:
* 20
*/
@NameInMap("PageSize")
public Integer pageSize;
public static DescribeExcludeSystemPathRequest build(java.util.Map map) throws Exception {
DescribeExcludeSystemPathRequest self = new DescribeExcludeSystemPathRequest();
return TeaModel.build(map, self);
}
public DescribeExcludeSystemPathRequest setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public DescribeExcludeSystemPathRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy