late 0.0.297

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.4
 * 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 CreateLeadFormRequestQuestionsInner {
    /// EMAIL, PHONE, FULL_NAME, FIRST_NAME, LAST_NAME, CUSTOM, …
    #[serde(rename = "type")]
    pub r#type: String,
    /// CUSTOM questions only.
    #[serde(rename = "key", skip_serializing_if = "Option::is_none")]
    pub key: Option<String>,
    /// CUSTOM questions only.
    #[serde(rename = "label", skip_serializing_if = "Option::is_none")]
    pub label: Option<String>,
    #[serde(rename = "options", skip_serializing_if = "Option::is_none")]
    pub options: Option<Vec<models::CreateLeadFormRequestQuestionsInnerOptionsInner>>,
    #[serde(rename = "inline_context", skip_serializing_if = "Option::is_none")]
    pub inline_context: Option<String>,
}

impl CreateLeadFormRequestQuestionsInner {
    pub fn new(r#type: String) -> CreateLeadFormRequestQuestionsInner {
        CreateLeadFormRequestQuestionsInner {
            r#type,
            key: None,
            label: None,
            options: None,
            inline_context: None,
        }
    }
}