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.30
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 {
    // result
    @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 {
        // 角色id
        @NameInMap("roleId")
        public Long roleId;

        // 角色名字
        @NameInMap("roleName")
        public String roleName;

        // 行业角色编码
        @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