late 0.0.297

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.4
 * 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 CompleteWhatsAppPhoneSelectionRequest {
    /// The Zernio profile ID
    #[serde(rename = "profileId")]
    pub profile_id: String,
    /// The selected phone number ID (from listWhatsAppPhoneNumbers)
    #[serde(rename = "phoneNumberId")]
    pub phone_number_id: String,
    /// The WABA ID containing the selected phone
    #[serde(rename = "wabaId")]
    pub waba_id: String,
    /// The temporary access token from the headless redirect
    #[serde(rename = "tempToken")]
    pub temp_token: String,
    /// Optional user profile data (passthrough)
    #[serde(rename = "userProfile", skip_serializing_if = "Option::is_none")]
    pub user_profile: Option<serde_json::Value>,
    /// Optional URL to receive the post-connection redirect target
    #[serde(rename = "redirect_url", skip_serializing_if = "Option::is_none")]
    pub redirect_url: Option<String>,
}

impl CompleteWhatsAppPhoneSelectionRequest {
    pub fn new(
        profile_id: String,
        phone_number_id: String,
        waba_id: String,
        temp_token: String,
    ) -> CompleteWhatsAppPhoneSelectionRequest {
        CompleteWhatsAppPhoneSelectionRequest {
            profile_id,
            phone_number_id,
            waba_id,
            temp_token,
            user_profile: None,
            redirect_url: None,
        }
    }
}