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

/// Represents the delivery status of a message recipient in the IPPanel API.
///
/// Contains the recipient's number and their delivery status.
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Recipient {
    pub recipient: String,
    pub status: String,
}