/*
* Hanzo Cloud API
*
* The Hanzo Cloud API as a customer calls it: every operation under /v1/ except the operator's admin product, relay routes, legacy spellings and capabilities still reached by flag. Tagged by product: the first path segment after /v1/.
*
* The version of the OpenAPI document: v1
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// ConsoleSettingsGoogleAnalytics : GoogleAnalytics carries no tracking id and anonymizes users — this console reports no analytics.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ConsoleSettingsGoogleAnalytics {
#[serde(rename = "anonymizeUsers", skip_serializing_if = "Option::is_none")]
pub anonymize_users: Option<bool>,
#[serde(rename = "trackingID", skip_serializing_if = "Option::is_none")]
pub tracking_id: Option<String>,
}
impl ConsoleSettingsGoogleAnalytics {
/// GoogleAnalytics carries no tracking id and anonymizes users — this console reports no analytics.
pub fn new() -> ConsoleSettingsGoogleAnalytics {
ConsoleSettingsGoogleAnalytics {
anonymize_users: None,
tracking_id: None,
}
}
}