/*
* Linkbreakers API
*
* This is a documentation of all the APIs of Linkbreakers
*
* The version of the OpenAPI document: 1.51.0
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// PublicCreateQrcodeDesignResponse : PublicCreateQrcodeDesignResponse echoes the newly created design with generated metadata.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct PublicCreateQrcodeDesignResponse {
#[serde(rename = "qrcodeDesign", skip_serializing_if = "Option::is_none")]
pub qrcode_design: Option<Box<models::QrcodeDesign>>,
}
impl PublicCreateQrcodeDesignResponse {
/// PublicCreateQrcodeDesignResponse echoes the newly created design with generated metadata.
pub fn new() -> PublicCreateQrcodeDesignResponse {
PublicCreateQrcodeDesignResponse {
qrcode_design: None,
}
}
}