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
15
16
17
use serde::{Deserialize, Serialize};

/// Represents a sent message in the IPPanel API.
///
/// Contains tracking code, sender, content, status, type, confirmation, timestamps, and recipient count.
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Message {
    pub bulk_id: Option<String>,
    pub number: Option<String>,
    pub message: Option<String>,
    pub status: Option<String>,
    pub r#type: Option<String>,
    pub confirm_state: Option<String>,
    pub created_at: Option<String>,
    pub sent_at: Option<String>,
    pub recipients_count: Option<u32>,
}