openlark-analytics 0.17.0

飞书开放平台数据分析模块 - 搜索服务、数据分析 API (14 APIs)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! 数据分析常量

/// API 端点常量
pub mod endpoints {
    /// 搜索 API 基础路径
    pub const SEARCH_BASE: &str = "/open-apis/search";
}

/// 搜索类型常量
pub mod search_type {
    /// 全文搜索
    pub const FULL_TEXT: &str = "full_text";
    /// 智能搜索
    pub const SMART: &str = "smart";
    /// 模糊搜索
    pub const FUZZY: &str = "fuzzy";
}