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 GetTelegramConnectStatus200Response {
    /// The access code to send to the Telegram bot
    #[serde(rename = "code", skip_serializing_if = "Option::is_none")]
    pub code: Option<String>,
    /// When the code expires
    #[serde(rename = "expiresAt", skip_serializing_if = "Option::is_none")]
    pub expires_at: Option<String>,
    /// Seconds until expiration
    #[serde(rename = "expiresIn", skip_serializing_if = "Option::is_none")]
    pub expires_in: Option<i32>,
    /// The Telegram bot username to message
    #[serde(rename = "botUsername", skip_serializing_if = "Option::is_none")]
    pub bot_username: Option<String>,
    /// Step-by-step connection instructions
    #[serde(rename = "instructions", skip_serializing_if = "Option::is_none")]
    pub instructions: Option<Vec<String>>,
}

impl GetTelegramConnectStatus200Response {
    pub fn new() -> GetTelegramConnectStatus200Response {
        GetTelegramConnectStatus200Response {
            code: None,
            expires_at: None,
            expires_in: None,
            bot_username: None,
            instructions: None,
        }
    }
}