com.aliyun.dingtalkdoc_2_0.models.GetMySpaceResponseBody 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 GetMySpaceResponseBody extends TeaModel {
/**
* example:
* 2022-01-01T10:00:00Z
*/
@NameInMap("createTime")
public String createTime;
/**
* example:
* 2022-01-01T10:00:00Z
*/
@NameInMap("modifyTime")
public String modifyTime;
/**
* example:
* 1L
*/
@NameInMap("quota")
public Long quota;
/**
* example:
* space_id
*/
@NameInMap("spaceId")
public String spaceId;
/**
* example:
* space_name
*/
@NameInMap("spaceName")
public String spaceName;
/**
* example:
* personal|org|custom|unknown
*/
@NameInMap("spaceType")
public String spaceType;
/**
* example:
* 1L
*/
@NameInMap("usedQuota")
public Long usedQuota;
public static GetMySpaceResponseBody build(java.util.Map map) throws Exception {
GetMySpaceResponseBody self = new GetMySpaceResponseBody();
return TeaModel.build(map, self);
}
public GetMySpaceResponseBody setCreateTime(String createTime) {
this.createTime = createTime;
return this;
}
public String getCreateTime() {
return this.createTime;
}
public GetMySpaceResponseBody setModifyTime(String modifyTime) {
this.modifyTime = modifyTime;
return this;
}
public String getModifyTime() {
return this.modifyTime;
}
public GetMySpaceResponseBody setQuota(Long quota) {
this.quota = quota;
return this;
}
public Long getQuota() {
return this.quota;
}
public GetMySpaceResponseBody setSpaceId(String spaceId) {
this.spaceId = spaceId;
return this;
}
public String getSpaceId() {
return this.spaceId;
}
public GetMySpaceResponseBody setSpaceName(String spaceName) {
this.spaceName = spaceName;
return this;
}
public String getSpaceName() {
return this.spaceName;
}
public GetMySpaceResponseBody setSpaceType(String spaceType) {
this.spaceType = spaceType;
return this;
}
public String getSpaceType() {
return this.spaceType;
}
public GetMySpaceResponseBody setUsedQuota(Long usedQuota) {
this.usedQuota = usedQuota;
return this;
}
public Long getUsedQuota() {
return this.usedQuota;
}
}