use crate::gen::manager::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct SettingsTelephonyAgentInboundResponse {
#[serde(rename = "item")]
pub item: Box<models::SettingsTelephonyAgentInboundResponseItem>,
}
impl SettingsTelephonyAgentInboundResponse {
pub fn new(
item: models::SettingsTelephonyAgentInboundResponseItem,
) -> SettingsTelephonyAgentInboundResponse {
SettingsTelephonyAgentInboundResponse {
item: Box::new(item),
}
}
}