com.aliyun.dingtalkindustry_1_0.models.DigitalStoreRolesResponseBody 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.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class DigitalStoreRolesResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@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 {
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("level")
public Long level;
/**
* This parameter is required.
*
* example:
* DS_XXXXX
*/
@NameInMap("roleCode")
public String roleCode;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("roleId")
public Long roleId;
/**
* This parameter is required.
*
* example:
* 店长
*/
@NameInMap("roleName")
public String roleName;
/**
* example:
* create
*/
@NameInMap("source")
public String source;
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;
}
public DigitalStoreRolesResponseBodyContent setSource(String source) {
this.source = source;
return this;
}
public String getSource() {
return this.source;
}
}
}