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

/// Represents a received inbox message from the IPPanel API.
///
/// Contains information about the sender, message content, receiving line, time, and type.
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct InboxMessage {
    pub number: String,
    pub message: String,
    pub sender: String,
    pub time: String,
    pub r#type: String,
}