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
/*
* 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};
/// WebhookPayloadAdStatusChangedAccount : The connected ad-platform account that owns the ad object.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WebhookPayloadAdStatusChangedAccount {
/// Internal Zernio account ID (same as used in /v1/accounts/{accountId}).
#[serde(rename = "accountId")]
pub account_id: String,
/// Internal Zernio profile ID this account belongs to.
#[serde(rename = "profileId")]
pub profile_id: String,
/// Ad platform identifier. Currently always `metaads`.
#[serde(rename = "platform")]
pub platform: String,
/// Display username of the connected ad-platform account.
#[serde(rename = "username")]
pub username: String,
/// Human-readable display name of the account, when available.
#[serde(rename = "displayName", skip_serializing_if = "Option::is_none")]
pub display_name: Option<String>,
}
impl WebhookPayloadAdStatusChangedAccount {
/// The connected ad-platform account that owns the ad object.
pub fn new(
account_id: String,
profile_id: String,
platform: String,
username: String,
) -> WebhookPayloadAdStatusChangedAccount {
WebhookPayloadAdStatusChangedAccount {
account_id,
profile_id,
platform,
username,
display_name: None,
}
}
}