All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sas20181203.models.DescribeExcludeSystemPathRequest Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show 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.

*/ @NameInMap("CurrentPage") public Integer currentPage; /** *

The number of entries to return on each page.

*/ @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 - 2024 Weber Informatics LLC | Privacy Policy