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 WebhookPayloadLeadLead {
    /// Zernio lead ID (AdLead document ID)
    #[serde(rename = "id")]
    pub id: String,
    /// Meta lead ID (the platform's leadgen_id)
    #[serde(rename = "leadgenId")]
    pub leadgen_id: String,
    /// Lead Gen form ID the lead was submitted against
    #[serde(rename = "formId")]
    pub form_id: String,
    /// Human-readable form name (best-effort; may be null)
    #[serde(rename = "formName", skip_serializing_if = "Option::is_none")]
    pub form_name: Option<String>,
    /// Meta ad ID that drove the lead (null for organic/test leads)
    #[serde(rename = "adId", skip_serializing_if = "Option::is_none")]
    pub ad_id: Option<String>,
    #[serde(rename = "adsetId", skip_serializing_if = "Option::is_none")]
    pub adset_id: Option<String>,
    #[serde(rename = "campaignId", skip_serializing_if = "Option::is_none")]
    pub campaign_id: Option<String>,
    /// Flattened question key -> answer map. For multiple-choice questions the value is the option key (e.g. \"k1\"), not the display label.
    #[serde(rename = "fields")]
    pub fields: std::collections::HashMap<String, String>,
    /// True when the lead came from an organic post rather than a paid ad
    #[serde(rename = "isOrganic")]
    pub is_organic: bool,
    /// Meta's lead creation time (ISO 8601)
    #[serde(rename = "createdAt")]
    pub created_at: String,
}

impl WebhookPayloadLeadLead {
    pub fn new(
        id: String,
        leadgen_id: String,
        form_id: String,
        fields: std::collections::HashMap<String, String>,
        is_organic: bool,
        created_at: String,
    ) -> WebhookPayloadLeadLead {
        WebhookPayloadLeadLead {
            id,
            leadgen_id,
            form_id,
            form_name: None,
            ad_id: None,
            adset_id: None,
            campaign_id: None,
            fields,
            is_organic,
            created_at,
        }
    }
}