use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetContact200Response {
#[serde(rename = "success", skip_serializing_if = "Option::is_none")]
pub success: Option<bool>,
#[serde(rename = "contact", skip_serializing_if = "Option::is_none")]
pub contact: Option<Box<models::GetContact200ResponseContact>>,
#[serde(rename = "channels", skip_serializing_if = "Option::is_none")]
pub channels: Option<Vec<models::GetContact200ResponseChannelsInner>>,
}
impl GetContact200Response {
pub fn new() -> GetContact200Response {
GetContact200Response {
success: None,
contact: None,
channels: None,
}
}
}