asterisk-ari 0.3.0

Asterisk ARI client
Documentation
1
2
3
4
5
6
7
8
use serde::Deserialize;

/// Variable : The value of a channel variable
#[derive(Clone, Default, Debug, PartialEq, Deserialize)]
pub struct Variable {
    /// The value of the variable requested
    pub value: String,
}