com.aliyun.dingtalkdoc_1_0.models.DocUpdateContentRequest 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 DocUpdateContentRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* content
*/
@NameInMap("content")
public String content;
/**
* example:
* data_type
*/
@NameInMap("dataType")
public String dataType;
/**
* This parameter is required.
*
* example:
* union_id
*/
@NameInMap("operatorId")
public String operatorId;
public static DocUpdateContentRequest build(java.util.Map map) throws Exception {
DocUpdateContentRequest self = new DocUpdateContentRequest();
return TeaModel.build(map, self);
}
public DocUpdateContentRequest setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
public DocUpdateContentRequest setDataType(String dataType) {
this.dataType = dataType;
return this;
}
public String getDataType() {
return this.dataType;
}
public DocUpdateContentRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
}