![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkbizfinance_2_0.models.QueryUserRoleListRequest 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_2_0.models;
import com.aliyun.tea.*;
public class QueryUserRoleListRequest extends TeaModel {
/**
* example:
* COM_DEFAULT
*/
@NameInMap("companyCode")
public String companyCode;
/**
* example:
* 12312231231
*/
@NameInMap("userId")
public String userId;
public static QueryUserRoleListRequest build(java.util.Map map) throws Exception {
QueryUserRoleListRequest self = new QueryUserRoleListRequest();
return TeaModel.build(map, self);
}
public QueryUserRoleListRequest setCompanyCode(String companyCode) {
this.companyCode = companyCode;
return this;
}
public String getCompanyCode() {
return this.companyCode;
}
public QueryUserRoleListRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy