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

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

The 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 DocAppendParagraphRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

element_type

*/ @NameInMap("elementType") public String elementType; /** *

This parameter is required.

* * example: *

properties

*/ @NameInMap("properties") public java.util.Map properties; /** *

This parameter is required.

* * example: *

union_id

*/ @NameInMap("operatorId") public String operatorId; public static DocAppendParagraphRequest build(java.util.Map map) throws Exception { DocAppendParagraphRequest self = new DocAppendParagraphRequest(); return TeaModel.build(map, self); } public DocAppendParagraphRequest setElementType(String elementType) { this.elementType = elementType; return this; } public String getElementType() { return this.elementType; } public DocAppendParagraphRequest setProperties(java.util.Map properties) { this.properties = properties; return this; } public java.util.Map getProperties() { return this.properties; } public DocAppendParagraphRequest setOperatorId(String operatorId) { this.operatorId = operatorId; return this; } public String getOperatorId() { return this.operatorId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy