com.aliyun.dingtalkbizfinance_1_0.models.QueryRoleMemberByPageRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// 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;
}
}