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
60
61
62
63
64
65
66
67
68
/*
* 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,
}
}
}