useserde::{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)]pubstructInboxMessage{pubnumber: String,
pubmessage: String,
pubsender: String,
pubtime: String,
pub r#type: String,
}