com.aliyun.dingtalkdoc_1_0.models.DocBlocksQueryRequest 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 DocBlocksQueryRequest extends TeaModel {
/**
* example:
* block_type
*/
@NameInMap("blockType")
public String blockType;
/**
* example:
* end_index
*/
@NameInMap("endIndex")
public Integer endIndex;
/**
* This parameter is required.
*
* example:
* union_id
*/
@NameInMap("operatorId")
public String operatorId;
/**
* example:
* start_index
*/
@NameInMap("startIndex")
public Integer startIndex;
public static DocBlocksQueryRequest build(java.util.Map map) throws Exception {
DocBlocksQueryRequest self = new DocBlocksQueryRequest();
return TeaModel.build(map, self);
}
public DocBlocksQueryRequest setBlockType(String blockType) {
this.blockType = blockType;
return this;
}
public String getBlockType() {
return this.blockType;
}
public DocBlocksQueryRequest setEndIndex(Integer endIndex) {
this.endIndex = endIndex;
return this;
}
public Integer getEndIndex() {
return this.endIndex;
}
public DocBlocksQueryRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
public DocBlocksQueryRequest setStartIndex(Integer startIndex) {
this.startIndex = startIndex;
return this;
}
public Integer getStartIndex() {
return this.startIndex;
}
}