All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkdoc_1_0.models.DocBlocksQueryRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy