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.1
 * Contact: support@zernio.com
 * Generated by: https://openapi-generator.tech
 */

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

/// WebhookPayloadLeadReceived : Webhook payload for the lead.received event. Fired when a Meta Lead Gen Form receives a new submission. Real-time delivery requires the page to be subscribed to the `leadgen` webhook field — Zernio subscribes on connect; existing accounts get backfilled by `scripts/backfill-fb-webhook-subscriptions.ts`.  Requires the Ads add-on. Subscribers without the add-on are filtered at delivery time.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WebhookPayloadLeadReceived {
    /// Stable webhook event ID
    #[serde(rename = "id")]
    pub id: String,
    #[serde(rename = "event")]
    pub event: Event,
    #[serde(rename = "lead")]
    pub lead: Box<models::Lead>,
    #[serde(rename = "account")]
    pub account: Box<models::WebhookPayloadLeadReceivedAccount>,
    #[serde(rename = "timestamp")]
    pub timestamp: String,
}

impl WebhookPayloadLeadReceived {
    /// Webhook payload for the lead.received event. Fired when a Meta Lead Gen Form receives a new submission. Real-time delivery requires the page to be subscribed to the `leadgen` webhook field — Zernio subscribes on connect; existing accounts get backfilled by `scripts/backfill-fb-webhook-subscriptions.ts`.  Requires the Ads add-on. Subscribers without the add-on are filtered at delivery time.
    pub fn new(
        id: String,
        event: Event,
        lead: models::Lead,
        account: models::WebhookPayloadLeadReceivedAccount,
        timestamp: String,
    ) -> WebhookPayloadLeadReceived {
        WebhookPayloadLeadReceived {
            id,
            event,
            lead: Box::new(lead),
            account: Box::new(account),
            timestamp,
        }
    }
}
///
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Event {
    #[serde(rename = "lead.received")]
    LeadReceived,
}

impl Default for Event {
    fn default() -> Event {
        Self::LeadReceived
    }
}