1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
* 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
}
}