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

com.aliyun.dingtalkdoc_2_0.models.DocContentRequest 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_2_0.models;

import com.aliyun.tea.*;

public class DocContentRequest extends TeaModel {
    @NameInMap("option")
    public DocContentRequestOption option;

    /**
     * 

This parameter is required.

* * example: *

union_id

*/ @NameInMap("operatorId") public String operatorId; public static DocContentRequest build(java.util.Map map) throws Exception { DocContentRequest self = new DocContentRequest(); return TeaModel.build(map, self); } public DocContentRequest setOption(DocContentRequestOption option) { this.option = option; return this; } public DocContentRequestOption getOption() { return this.option; } public DocContentRequest setOperatorId(String operatorId) { this.operatorId = operatorId; return this; } public String getOperatorId() { return this.operatorId; } public static class DocContentRequestOption extends TeaModel { /** * example: *

markdown

*/ @NameInMap("targetFormat") public String targetFormat; public static DocContentRequestOption build(java.util.Map map) throws Exception { DocContentRequestOption self = new DocContentRequestOption(); return TeaModel.build(map, self); } public DocContentRequestOption setTargetFormat(String targetFormat) { this.targetFormat = targetFormat; return this; } public String getTargetFormat() { return this.targetFormat; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy