/*
* 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};
/// SharedAdAccount : An ad account a tracking tag is shared with (Meta `shared_accounts` edge).
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct SharedAdAccount {
/// Ad account id, in `act_<digits>` form.
#[serde(rename = "id")]
pub id: String,
#[serde(rename = "name", skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
/// Business Manager id that owns the ad account
#[serde(rename = "businessId", skip_serializing_if = "Option::is_none")]
pub business_id: Option<String>,
}
impl SharedAdAccount {
/// An ad account a tracking tag is shared with (Meta `shared_accounts` edge).
pub fn new(id: String) -> SharedAdAccount {
SharedAdAccount {
id,
name: None,
business_id: None,
}
}
}