summaryrefslogtreecommitdiffstats
path: root/src/pagination.rs
blob: 1f902b48934da1dd3ee7a6fcfc126fc961c75d40 (plain)
1
2
3
4
5
6
7
use serde::Deserialize;

#[derive(Deserialize, Debug)]
pub struct Pagination {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub page: Option<i64>,
}