com.aliyun.dingtalkdoc_1_0.models.GetWorkspaceResponseBody 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_1_0.models;
import com.aliyun.tea.*;
public class GetWorkspaceResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("isDeleted")
public Boolean isDeleted;
/**
* This parameter is required.
*/
@NameInMap("owner")
public String owner;
@NameInMap("rootDentryUuid")
public String rootDentryUuid;
/**
* This parameter is required.
*/
@NameInMap("url")
public String url;
public static GetWorkspaceResponseBody build(java.util.Map map) throws Exception {
GetWorkspaceResponseBody self = new GetWorkspaceResponseBody();
return TeaModel.build(map, self);
}
public GetWorkspaceResponseBody setIsDeleted(Boolean isDeleted) {
this.isDeleted = isDeleted;
return this;
}
public Boolean getIsDeleted() {
return this.isDeleted;
}
public GetWorkspaceResponseBody setOwner(String owner) {
this.owner = owner;
return this;
}
public String getOwner() {
return this.owner;
}
public GetWorkspaceResponseBody setRootDentryUuid(String rootDentryUuid) {
this.rootDentryUuid = rootDentryUuid;
return this;
}
public String getRootDentryUuid() {
return this.rootDentryUuid;
}
public GetWorkspaceResponseBody setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
}