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 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,
        }
    }
}