ippanel-sms 0.1.0

A professional, asynchronous Rust client library for the IPPANEL SMS web service.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use serde::{Deserialize, Serialize};

/// Represents pagination information for paged API responses.
///
/// Contains total count, page size, current page, total pages, and navigation links.
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct PaginationInfo {
    pub total: u32,
    pub limit: u32,
    pub page: u32,
    pub pages: u32,
    pub prev: Option<String>,
    pub next: Option<String>,
}