com.aliyun.dingtalkresident_1_0.models.ListUserIndustryRolesResponseBody 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.dingtalkresident_1_0.models;
import com.aliyun.tea.*;
public class ListUserIndustryRolesResponseBody extends TeaModel {
@NameInMap("roleList")
public java.util.List roleList;
public static ListUserIndustryRolesResponseBody build(java.util.Map map) throws Exception {
ListUserIndustryRolesResponseBody self = new ListUserIndustryRolesResponseBody();
return TeaModel.build(map, self);
}
public ListUserIndustryRolesResponseBody setRoleList(java.util.List roleList) {
this.roleList = roleList;
return this;
}
public java.util.List getRoleList() {
return this.roleList;
}
public static class ListUserIndustryRolesResponseBodyRoleList extends TeaModel {
/**
* example:
* 312423423
*/
@NameInMap("roleId")
public Long roleId;
/**
* example:
* 安保部经理
*/
@NameInMap("roleName")
public String roleName;
/**
* example:
* SecurityManager
*/
@NameInMap("tagCode")
public String tagCode;
public static ListUserIndustryRolesResponseBodyRoleList build(java.util.Map map) throws Exception {
ListUserIndustryRolesResponseBodyRoleList self = new ListUserIndustryRolesResponseBodyRoleList();
return TeaModel.build(map, self);
}
public ListUserIndustryRolesResponseBodyRoleList setRoleId(Long roleId) {
this.roleId = roleId;
return this;
}
public Long getRoleId() {
return this.roleId;
}
public ListUserIndustryRolesResponseBodyRoleList setRoleName(String roleName) {
this.roleName = roleName;
return this;
}
public String getRoleName() {
return this.roleName;
}
public ListUserIndustryRolesResponseBodyRoleList setTagCode(String tagCode) {
this.tagCode = tagCode;
return this;
}
public String getTagCode() {
return this.tagCode;
}
}
}