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

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

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;

import com.aliyun.tea.*;

public class ListClientUserDefineRulesRequest extends TeaModel {
    /**
     * 

The number of the page to return.

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

The name of the rule.

*/ @NameInMap("Name") public String name; /** *

The number of entries to return on each page.

*/ @NameInMap("PageSize") public Integer pageSize; /** *

The types of rules.

*/ @NameInMap("Type") public java.util.List type; public static ListClientUserDefineRulesRequest build(java.util.Map map) throws Exception { ListClientUserDefineRulesRequest self = new ListClientUserDefineRulesRequest(); return TeaModel.build(map, self); } public ListClientUserDefineRulesRequest setCurrentPage(Integer currentPage) { this.currentPage = currentPage; return this; } public Integer getCurrentPage() { return this.currentPage; } public ListClientUserDefineRulesRequest setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public ListClientUserDefineRulesRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public ListClientUserDefineRulesRequest setType(java.util.List type) { this.type = type; return this; } public java.util.List getType() { return this.type; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy