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

com.aliyun.dingtalkdoc_2_0.models.ExportDocRequest 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 ExportDocRequest extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("param") public ExportDocRequestParam param; public static ExportDocRequest build(java.util.Map map) throws Exception { ExportDocRequest self = new ExportDocRequest(); return TeaModel.build(map, self); } public ExportDocRequest setParam(ExportDocRequestParam param) { this.param = param; return this; } public ExportDocRequestParam getParam() { return this.param; } public static class ExportDocRequestParam extends TeaModel { /** *

This parameter is required.

* * example: *

dentryUuid

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

This parameter is required.

* * example: *

dingTalksheetToxlsx

*/ @NameInMap("exportType") public String exportType; public static ExportDocRequestParam build(java.util.Map map) throws Exception { ExportDocRequestParam self = new ExportDocRequestParam(); return TeaModel.build(map, self); } public ExportDocRequestParam setDentryUuid(String dentryUuid) { this.dentryUuid = dentryUuid; return this; } public String getDentryUuid() { return this.dentryUuid; } public ExportDocRequestParam setExportType(String exportType) { this.exportType = exportType; return this; } public String getExportType() { return this.exportType; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy