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
/*
* 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 SendConversionsRequest {
/// SocialAccount ID (metaads, googleads, or linkedinads).
#[serde(rename = "accountId")]
pub account_id: String,
/// Platform destination identifier. For Meta, the pixel/dataset ID. For Google, the conversion action resource name. For LinkedIn, the conversion rule ID or full `urn:lla:llaPartnerConversion:{id}` URN.
#[serde(rename = "destinationId")]
pub destination_id: String,
#[serde(rename = "events")]
pub events: Vec<models::ConversionEvent>,
/// Meta `test_event_code` passthrough. Ignored by Google and LinkedIn.
#[serde(rename = "testCode", skip_serializing_if = "Option::is_none")]
pub test_code: Option<String>,
#[serde(rename = "consent", skip_serializing_if = "Option::is_none")]
pub consent: Option<Box<models::SendConversionsRequestConsent>>,
}
impl SendConversionsRequest {
pub fn new(
account_id: String,
destination_id: String,
events: Vec<models::ConversionEvent>,
) -> SendConversionsRequest {
SendConversionsRequest {
account_id,
destination_id,
events,
test_code: None,
consent: None,
}
}
}