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

com.aliyun.dingtalkindustry_1_0.models.DigitalStoreRolesResponseBody 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.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

public class DigitalStoreRolesResponseBody extends TeaModel {
    @NameInMap("content")
    public java.util.List content;

    public static DigitalStoreRolesResponseBody build(java.util.Map map) throws Exception {
        DigitalStoreRolesResponseBody self = new DigitalStoreRolesResponseBody();
        return TeaModel.build(map, self);
    }

    public DigitalStoreRolesResponseBody setContent(java.util.List content) {
        this.content = content;
        return this;
    }
    public java.util.List getContent() {
        return this.content;
    }

    public static class DigitalStoreRolesResponseBodyContent extends TeaModel {
        // 优先级
        @NameInMap("level")
        public Long level;

        // 角色Code
        @NameInMap("roleCode")
        public String roleCode;

        // 角色Id
        @NameInMap("roleId")
        public Long roleId;

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

        public static DigitalStoreRolesResponseBodyContent build(java.util.Map map) throws Exception {
            DigitalStoreRolesResponseBodyContent self = new DigitalStoreRolesResponseBodyContent();
            return TeaModel.build(map, self);
        }

        public DigitalStoreRolesResponseBodyContent setLevel(Long level) {
            this.level = level;
            return this;
        }
        public Long getLevel() {
            return this.level;
        }

        public DigitalStoreRolesResponseBodyContent setRoleCode(String roleCode) {
            this.roleCode = roleCode;
            return this;
        }
        public String getRoleCode() {
            return this.roleCode;
        }

        public DigitalStoreRolesResponseBodyContent setRoleId(Long roleId) {
            this.roleId = roleId;
            return this;
        }
        public Long getRoleId() {
            return this.roleId;
        }

        public DigitalStoreRolesResponseBodyContent setRoleName(String roleName) {
            this.roleName = roleName;
            return this;
        }
        public String getRoleName() {
            return this.roleName;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy