openlark-docs 0.17.0

飞书开放平台云文档服务模块 - 文档、表格、知识库API (202 APIs, 100% 覆盖,不含旧版本)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// 导出任务模块
///
/// 提供云文档导出任务的创建、查询和下载功能。
pub mod create;
pub mod download;
pub mod get;

// 显式导出 - 避免使用 glob reexport
pub use create::{CreateExportTaskRequest, CreateExportTaskResponse};

pub use download::DownloadExportRequest;

pub use get::{ExportTaskResult, GetExportTaskRequest, GetExportTaskResponse};