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

com.aliyun.dingtalkbizfinance_1_0.models.QueryRoleMemberByPageRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkbizfinance_1_0.models;

import com.aliyun.tea.*;

public class QueryRoleMemberByPageRequest extends TeaModel {
    /**
     * example:
     * 

COM_DEFAULT

*/ @NameInMap("companyCode") public String companyCode; /** * example: *

20

*/ @NameInMap("maxResults") public String maxResults; /** * example: *

0

*/ @NameInMap("nextToken") public String nextToken; /** * example: *

financeManager

*/ @NameInMap("roleCode") public String roleCode; public static QueryRoleMemberByPageRequest build(java.util.Map map) throws Exception { QueryRoleMemberByPageRequest self = new QueryRoleMemberByPageRequest(); return TeaModel.build(map, self); } public QueryRoleMemberByPageRequest setCompanyCode(String companyCode) { this.companyCode = companyCode; return this; } public String getCompanyCode() { return this.companyCode; } public QueryRoleMemberByPageRequest setMaxResults(String maxResults) { this.maxResults = maxResults; return this; } public String getMaxResults() { return this.maxResults; } public QueryRoleMemberByPageRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public QueryRoleMemberByPageRequest setRoleCode(String roleCode) { this.roleCode = roleCode; return this; } public String getRoleCode() { return this.roleCode; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy