sideko_rest_api 0.9.2

Rust API Client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Pagination
#[derive(serde::Serialize, serde::Deserialize, Debug, Default, Clone)]
pub struct Pagination {
    /// current page
    pub page: i64,
    /// total number of pages
    pub page_count: i64,
    /// maximum number of results per page
    pub page_limit: i64,
    /// total number of results across all pages
    pub total_count: i64,
}