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

com.aliyun.dingtalkedu_1_0.models.GetShareRolesResponseBody Maven / Gradle / Ivy

The 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 {
        /**
         * example:
         * 

123214123

*/ @NameInMap("shareRoleCode") public String shareRoleCode; /** * example: *

校长

*/ @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