com.aliyun.dingtalkdoc_2_0.models.SpaceVO 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.dingtalkdoc_2_0.models;
import com.aliyun.tea.*;
public class SpaceVO extends TeaModel {
@NameInMap("cover")
public String cover;
@NameInMap("description")
public String description;
@NameInMap("iconVO")
public SpaceVOIconVO iconVO;
/**
* This parameter is required.
*
* example:
* abc
*/
@NameInMap("id")
public String id;
/**
* This parameter is required.
*
* example:
* hello
*/
@NameInMap("name")
public String name;
@NameInMap("owner")
public SpaceVOOwner owner;
/**
* example:
* 1
*/
@NameInMap("type")
public Integer type;
/**
* example:
*
*/
@NameInMap("url")
public String url;
@NameInMap("visitorInfo")
public SpaceVOVisitorInfo visitorInfo;
public static SpaceVO build(java.util.Map map) throws Exception {
SpaceVO self = new SpaceVO();
return TeaModel.build(map, self);
}
public SpaceVO setCover(String cover) {
this.cover = cover;
return this;
}
public String getCover() {
return this.cover;
}
public SpaceVO setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public SpaceVO setIconVO(SpaceVOIconVO iconVO) {
this.iconVO = iconVO;
return this;
}
public SpaceVOIconVO getIconVO() {
return this.iconVO;
}
public SpaceVO setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public SpaceVO setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public SpaceVO setOwner(SpaceVOOwner owner) {
this.owner = owner;
return this;
}
public SpaceVOOwner getOwner() {
return this.owner;
}
public SpaceVO setType(Integer type) {
this.type = type;
return this;
}
public Integer getType() {
return this.type;
}
public SpaceVO setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
public SpaceVO setVisitorInfo(SpaceVOVisitorInfo visitorInfo) {
this.visitorInfo = visitorInfo;
return this;
}
public SpaceVOVisitorInfo getVisitorInfo() {
return this.visitorInfo;
}
public static class SpaceVOIconVO extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("icon")
public String icon;
/**
* This parameter is required.
*/
@NameInMap("type")
public String type;
public static SpaceVOIconVO build(java.util.Map map) throws Exception {
SpaceVOIconVO self = new SpaceVOIconVO();
return TeaModel.build(map, self);
}
public SpaceVOIconVO setIcon(String icon) {
this.icon = icon;
return this;
}
public String getIcon() {
return this.icon;
}
public SpaceVOIconVO setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class SpaceVOOwner extends TeaModel {
/**
* This parameter is required.
*
* example:
* dingtalk
*/
@NameInMap("name")
public String name;
/**
* This parameter is required.
*
* example:
* abcd
*/
@NameInMap("unionId")
public String unionId;
public static SpaceVOOwner build(java.util.Map map) throws Exception {
SpaceVOOwner self = new SpaceVOOwner();
return TeaModel.build(map, self);
}
public SpaceVOOwner setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public SpaceVOOwner setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}
public static class SpaceVOVisitorInfo extends TeaModel {
@NameInMap("dentryActions")
public java.util.List dentryActions;
@NameInMap("roleCode")
public String roleCode;
@NameInMap("spaceActions")
public java.util.List spaceActions;
public static SpaceVOVisitorInfo build(java.util.Map map) throws Exception {
SpaceVOVisitorInfo self = new SpaceVOVisitorInfo();
return TeaModel.build(map, self);
}
public SpaceVOVisitorInfo setDentryActions(java.util.List dentryActions) {
this.dentryActions = dentryActions;
return this;
}
public java.util.List getDentryActions() {
return this.dentryActions;
}
public SpaceVOVisitorInfo setRoleCode(String roleCode) {
this.roleCode = roleCode;
return this;
}
public String getRoleCode() {
return this.roleCode;
}
public SpaceVOVisitorInfo setSpaceActions(java.util.List spaceActions) {
this.spaceActions = spaceActions;
return this;
}
public java.util.List getSpaceActions() {
return this.spaceActions;
}
}
}