com.aliyun.dingtalkedu_1_0.models.GetShareRolesResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// 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;
}
}
}