openlark-docs 0.15.0-rc.2

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

// 显式导出 - 避免使用 glob reexport
pub use create::CreateFileSubscriptionRequest;

pub use get::{GetSubscriptionRequest, GetSubscriptionResponse};

pub use models::Subscription;

pub use patch::PatchSubscriptionRequest;