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 UpdateWhatsAppBusinessProfileRequest {
    /// WhatsApp social account ID
    #[serde(rename = "accountId")]
    pub account_id: String,
    /// Short business description (max 139 characters)
    #[serde(rename = "about", skip_serializing_if = "Option::is_none")]
    pub about: Option<String>,
    /// Business address
    #[serde(rename = "address", skip_serializing_if = "Option::is_none")]
    pub address: Option<String>,
    /// Full business description (max 512 characters)
    #[serde(rename = "description", skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// Business email
    #[serde(rename = "email", skip_serializing_if = "Option::is_none")]
    pub email: Option<String>,
    /// Business websites (max 2)
    #[serde(rename = "websites", skip_serializing_if = "Option::is_none")]
    pub websites: Option<Vec<String>>,
    /// Business category (e.g., RETAIL, ENTERTAINMENT, etc.)
    #[serde(rename = "vertical", skip_serializing_if = "Option::is_none")]
    pub vertical: Option<String>,
    /// Handle from resumable upload for profile picture
    #[serde(
        rename = "profilePictureHandle",
        skip_serializing_if = "Option::is_none"
    )]
    pub profile_picture_handle: Option<String>,
}

impl UpdateWhatsAppBusinessProfileRequest {
    pub fn new(account_id: String) -> UpdateWhatsAppBusinessProfileRequest {
        UpdateWhatsAppBusinessProfileRequest {
            account_id,
            about: None,
            address: None,
            description: None,
            email: None,
            websites: None,
            vertical: None,
            profile_picture_handle: None,
        }
    }
}