linkbreakers 1.91.5

Official Rust SDK for the Linkbreakers API
Documentation
/*
 * Linkbreakers API
 *
 * This is a documentation of all the APIs of Linkbreakers
 *
 * The version of the OpenAPI document: 1.91.5
 * 
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

/// QrcodeTemplate : Reusable QR code design presets that help teams create branded links with consistent styling and messaging.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct QrcodeTemplate {
    #[serde(rename = "builtIn", skip_serializing_if = "Option::is_none")]
    pub built_in: Option<bool>,
    #[serde(rename = "createdAt", skip_serializing_if = "Option::is_none")]
    pub created_at: Option<String>,
    #[serde(rename = "description", skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// Reference to the original public template when this template was created via import. Null for original templates.
    #[serde(rename = "duplicatedFrom", skip_serializing_if = "Option::is_none")]
    pub duplicated_from: Option<String>,
    /// Frequently Asked Questions about this template stored as JSON
    #[serde(rename = "faq", skip_serializing_if = "Option::is_none")]
    pub faq: Option<String>,
    #[serde(rename = "id", skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    /// Extended markdown-supported content providing detailed information about the template
    #[serde(rename = "learnMore", skip_serializing_if = "Option::is_none")]
    pub learn_more: Option<String>,
    #[serde(rename = "name", skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// When the template was published. Null means private template, only visible to creating workspace.
    #[serde(rename = "publishedAt", skip_serializing_if = "Option::is_none")]
    pub published_at: Option<String>,
    #[serde(rename = "qrcodeDesign", skip_serializing_if = "Option::is_none")]
    pub qrcode_design: Option<Box<models::QrcodeDesign>>,
    #[serde(rename = "qrcodeDesignId", skip_serializing_if = "Option::is_none")]
    pub qrcode_design_id: Option<String>,
    #[serde(rename = "slug", skip_serializing_if = "Option::is_none")]
    pub slug: Option<String>,
    #[serde(rename = "tags", skip_serializing_if = "Option::is_none")]
    pub tags: Option<String>,
    #[serde(rename = "thumbnailPendingUpdateSince", skip_serializing_if = "Option::is_none")]
    pub thumbnail_pending_update_since: Option<String>,
    #[serde(rename = "thumbnailSignedUrl", skip_serializing_if = "Option::is_none")]
    pub thumbnail_signed_url: Option<String>,
    #[serde(rename = "updatedAt", skip_serializing_if = "Option::is_none")]
    pub updated_at: Option<String>,
    #[serde(rename = "workspaceId", skip_serializing_if = "Option::is_none")]
    pub workspace_id: Option<String>,
}

impl QrcodeTemplate {
    /// Reusable QR code design presets that help teams create branded links with consistent styling and messaging.
    pub fn new() -> QrcodeTemplate {
        QrcodeTemplate {
            built_in: None,
            created_at: None,
            description: None,
            duplicated_from: None,
            faq: None,
            id: None,
            learn_more: None,
            name: None,
            published_at: None,
            qrcode_design: None,
            qrcode_design_id: None,
            slug: None,
            tags: None,
            thumbnail_pending_update_since: None,
            thumbnail_signed_url: None,
            updated_at: None,
            workspace_id: None,
        }
    }
}