use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct UpdateWhatsAppContact200Response {
#[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::UpdateWhatsAppContact200ResponseContact>>,
}
impl UpdateWhatsAppContact200Response {
pub fn new() -> UpdateWhatsAppContact200Response {
UpdateWhatsAppContact200Response {
success: None,
contact: None,
}
}
}