openlark-docs 0.17.0

飞书开放平台云文档服务模块 - 文档、表格、知识库API (202 APIs, 100% 覆盖,不含旧版本)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// 创建文件订阅接口。
pub mod create;
/// 获取文件订阅接口。
pub mod get;
/// 文件订阅模型模块。
pub mod models;
/// 更新文件订阅接口。
pub mod patch;

/// 重新导出创建文件订阅请求。
pub use create::CreateFileSubscriptionRequest;
/// 重新导出获取文件订阅类型。
pub use get::{GetSubscriptionRequest, GetSubscriptionResponse};
/// 重新导出文件订阅模型。
pub use models::Subscription;
/// 重新导出更新文件订阅请求。
pub use patch::PatchSubscriptionRequest;