use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct SelectSnapchatProfileRequest {
#[serde(rename = "profileId")]
pub profile_id: String,
#[serde(rename = "selectedPublicProfile")]
pub selected_public_profile: Box<models::SelectSnapchatProfileRequestSelectedPublicProfile>,
#[serde(rename = "tempToken")]
pub temp_token: String,
#[serde(rename = "userProfile")]
pub user_profile: serde_json::Value,
#[serde(rename = "refreshToken", skip_serializing_if = "Option::is_none")]
pub refresh_token: Option<String>,
#[serde(rename = "expiresIn", skip_serializing_if = "Option::is_none")]
pub expires_in: Option<i32>,
#[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,
}
}
}