zernio 0.0.132

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 SelectSnapchatProfileRequest {
    /// Your Zernio profile ID
    #[serde(rename = "profileId")]
    pub profile_id: String,
    #[serde(rename = "selectedPublicProfile")]
    pub selected_public_profile: Box<models::SelectSnapchatProfileRequestSelectedPublicProfile>,
    /// Temporary Snapchat access token from OAuth
    #[serde(rename = "tempToken")]
    pub temp_token: String,
    /// User profile data from OAuth redirect
    #[serde(rename = "userProfile")]
    pub user_profile: serde_json::Value,
    /// Snapchat refresh token (if available)
    #[serde(rename = "refreshToken", skip_serializing_if = "Option::is_none")]
    pub refresh_token: Option<String>,
    /// Token expiration time in seconds
    #[serde(rename = "expiresIn", skip_serializing_if = "Option::is_none")]
    pub expires_in: Option<i32>,
    /// Custom redirect URL after connection completes
    #[serde(rename = "redirect_url", skip_serializing_if = "Option::is_none")]
    pub redirect_url: Option<String>,
}

impl SelectSnapchatProfileRequest {
    pub fn new(
        profile_id: String,
        selected_public_profile: models::SelectSnapchatProfileRequestSelectedPublicProfile,
        temp_token: String,
        user_profile: serde_json::Value,
    ) -> SelectSnapchatProfileRequest {
        SelectSnapchatProfileRequest {
            profile_id,
            selected_public_profile: Box::new(selected_public_profile),
            temp_token,
            user_profile,
            refresh_token: None,
            expires_in: None,
            redirect_url: None,
        }
    }
}