useserde::Deserialize;/// LogChannel : Details of an Asterisk log channel
#[derive(Clone, Default, Debug, PartialEq, Deserialize)]pubstructLogChannel{/// The log channel path
pubchannel: String,
/// Types of logs for the log channel
pub r#type: String,
/// Whether a log type is enabled
pubstatus: String,
/// The various log levels
pubconfiguration: String,
}