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

com.aliyun.dingtalkedu_1_0.models.GetShareRolesResponseBody 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.dingtalkedu_1_0.models;

import com.aliyun.tea.*;

public class GetShareRolesResponseBody extends TeaModel {
    @NameInMap("result")
    public java.util.List result;

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

    public GetShareRolesResponseBody setResult(java.util.List result) {
        this.result = result;
        return this;
    }
    public java.util.List getResult() {
        return this.result;
    }

    public static class GetShareRolesResponseBodyResult extends TeaModel {
        // 角色code
        @NameInMap("shareRoleCode")
        public String shareRoleCode;

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

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

        public GetShareRolesResponseBodyResult setShareRoleCode(String shareRoleCode) {
            this.shareRoleCode = shareRoleCode;
            return this;
        }
        public String getShareRoleCode() {
            return this.shareRoleCode;
        }

        public GetShareRolesResponseBodyResult setShareRoleName(String shareRoleName) {
            this.shareRoleName = shareRoleName;
            return this;
        }
        public String getShareRoleName() {
            return this.shareRoleName;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy