1 2 3 4 5 6 7 8 9 10 11 12
use serde::{Deserialize, Serialize}; /// Represents a message pattern (template) in the IPPanel API. /// /// Contains the pattern code, status, content, and sharing information. #[derive(Debug, Serialize, Deserialize, Clone)] pub struct Pattern { pub code: String, pub status: String, pub message: String, pub is_shared: String, }