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