com.aliyun.dingtalkindustry_1_0.models.QueryUserRolesResponseBody 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.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class QueryUserRolesResponseBody extends TeaModel {
@NameInMap("content")
public java.util.List content;
public static QueryUserRolesResponseBody build(java.util.Map map) throws Exception {
QueryUserRolesResponseBody self = new QueryUserRolesResponseBody();
return TeaModel.build(map, self);
}
public QueryUserRolesResponseBody setContent(java.util.List content) {
this.content = content;
return this;
}
public java.util.List getContent() {
return this.content;
}
public static class QueryUserRolesResponseBodyContent extends TeaModel {
/**
* This parameter is required.
*
* example:
* roleCode
*/
@NameInMap("roleCode")
public String roleCode;
/**
* This parameter is required.
*
* example:
* roleNem
*/
@NameInMap("roleName")
public String roleName;
public static QueryUserRolesResponseBodyContent build(java.util.Map map) throws Exception {
QueryUserRolesResponseBodyContent self = new QueryUserRolesResponseBodyContent();
return TeaModel.build(map, self);
}
public QueryUserRolesResponseBodyContent setRoleCode(String roleCode) {
this.roleCode = roleCode;
return this;
}
public String getRoleCode() {
return this.roleCode;
}
public QueryUserRolesResponseBodyContent setRoleName(String roleName) {
this.roleName = roleName;
return this;
}
public String getRoleName() {
return this.roleName;
}
}
}