zernio 0.0.76

API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
Documentation
/*
 * Zernio API
 *
 * API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
 *
 * The version of the OpenAPI document: 1.0.1
 * Contact: support@zernio.com
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct CreateWhatsAppContactRequest {
    /// WhatsApp social account ID
    #[serde(rename = "accountId")]
    pub account_id: String,
    /// Phone number in E.164 format
    #[serde(rename = "phone")]
    pub phone: String,
    /// Contact name
    #[serde(rename = "name")]
    pub name: String,
    /// Contact email
    #[serde(rename = "email", skip_serializing_if = "Option::is_none")]
    pub email: Option<String>,
    /// Company name
    #[serde(rename = "company", skip_serializing_if = "Option::is_none")]
    pub company: Option<String>,
    /// Tags for categorization
    #[serde(rename = "tags", skip_serializing_if = "Option::is_none")]
    pub tags: Option<Vec<String>>,
    /// Groups the contact belongs to
    #[serde(rename = "groups", skip_serializing_if = "Option::is_none")]
    pub groups: Option<Vec<String>>,
    /// Whether the contact has opted in to receive messages
    #[serde(rename = "isOptedIn", skip_serializing_if = "Option::is_none")]
    pub is_opted_in: Option<bool>,
    /// Custom key-value fields
    #[serde(rename = "customFields", skip_serializing_if = "Option::is_none")]
    pub custom_fields: Option<std::collections::HashMap<String, String>>,
    /// Notes about the contact
    #[serde(rename = "notes", skip_serializing_if = "Option::is_none")]
    pub notes: Option<String>,
}

impl CreateWhatsAppContactRequest {
    pub fn new(account_id: String, phone: String, name: String) -> CreateWhatsAppContactRequest {
        CreateWhatsAppContactRequest {
            account_id,
            phone,
            name,
            email: None,
            company: None,
            tags: None,
            groups: None,
            is_opted_in: None,
            custom_fields: None,
            notes: None,
        }
    }
}