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

com.aliyun.dingtalkresident_1_0.models.ListUserIndustryRolesResponseBody 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.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; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy