com.aliyun.dingtalkdoc_1_0.models.CreateWorkspaceResponseBody 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 CreateWorkspaceResponseBody extends TeaModel {
@NameInMap("description")
public String description;
/**
* This parameter is required.
*/
@NameInMap("name")
public String name;
/**
* This parameter is required.
*/
@NameInMap("url")
public String url;
/**
* This parameter is required.
*/
@NameInMap("workspaceId")
public String workspaceId;
public static CreateWorkspaceResponseBody build(java.util.Map map) throws Exception {
CreateWorkspaceResponseBody self = new CreateWorkspaceResponseBody();
return TeaModel.build(map, self);
}
public CreateWorkspaceResponseBody setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public CreateWorkspaceResponseBody setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public CreateWorkspaceResponseBody setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
public CreateWorkspaceResponseBody setWorkspaceId(String workspaceId) {
this.workspaceId = workspaceId;
return this;
}
public String getWorkspaceId() {
return this.workspaceId;
}
}