![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkdoc_1_0.models.DocInsertBlocksResponseBody 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 DocInsertBlocksResponseBody extends TeaModel {
@NameInMap("result")
public DocInsertBlocksResponseBodyResult result;
@NameInMap("success")
public Boolean success;
public static DocInsertBlocksResponseBody build(java.util.Map map) throws Exception {
DocInsertBlocksResponseBody self = new DocInsertBlocksResponseBody();
return TeaModel.build(map, self);
}
public DocInsertBlocksResponseBody setResult(DocInsertBlocksResponseBodyResult result) {
this.result = result;
return this;
}
public DocInsertBlocksResponseBodyResult getResult() {
return this.result;
}
public DocInsertBlocksResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class DocInsertBlocksResponseBodyResult extends TeaModel {
@NameInMap("data")
public java.util.Map data;
public static DocInsertBlocksResponseBodyResult build(java.util.Map map) throws Exception {
DocInsertBlocksResponseBodyResult self = new DocInsertBlocksResponseBodyResult();
return TeaModel.build(map, self);
}
public DocInsertBlocksResponseBodyResult setData(java.util.Map data) {
this.data = data;
return this;
}
public java.util.Map getData() {
return this.data;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy