com.aliyun.dingtalkdoc_1_0.models.CreateWorkspaceDocRequest 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 CreateWorkspaceDocRequest extends TeaModel {
// 文档类型
@NameInMap("docType")
public String docType;
// 文档名
@NameInMap("name")
public String name;
// 操作人unionId
@NameInMap("operatorId")
public String operatorId;
// 父节点nodeId
@NameInMap("parentNodeId")
public String parentNodeId;
// 文档模板id
@NameInMap("templateId")
public String templateId;
@NameInMap("templateType")
public String templateType;
public static CreateWorkspaceDocRequest build(java.util.Map map) throws Exception {
CreateWorkspaceDocRequest self = new CreateWorkspaceDocRequest();
return TeaModel.build(map, self);
}
public CreateWorkspaceDocRequest setDocType(String docType) {
this.docType = docType;
return this;
}
public String getDocType() {
return this.docType;
}
public CreateWorkspaceDocRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public CreateWorkspaceDocRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
public CreateWorkspaceDocRequest setParentNodeId(String parentNodeId) {
this.parentNodeId = parentNodeId;
return this;
}
public String getParentNodeId() {
return this.parentNodeId;
}
public CreateWorkspaceDocRequest setTemplateId(String templateId) {
this.templateId = templateId;
return this;
}
public String getTemplateId() {
return this.templateId;
}
public CreateWorkspaceDocRequest setTemplateType(String templateType) {
this.templateType = templateType;
return this;
}
public String getTemplateType() {
return this.templateType;
}
}