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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
* 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};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct DestinationStatus {
/// Account is the operator's own label for the connected account, as supplied on connect. Absent when unset.
#[serde(rename = "account", skip_serializing_if = "Option::is_none")]
pub account: Option<String>,
/// groups the card: Analytics | Advertising
#[serde(rename = "category", skip_serializing_if = "Option::is_none")]
pub category: Option<String>,
/// Config is the org's stored NON-SECRET configuration — the measurement/pixel ids keyed by DestinationField.Key. A secret is never in here; secrets live in KMS and only their names are published, in Secrets.
#[serde(rename = "config", skip_serializing_if = "Option::is_none")]
pub config: Option<std::collections::HashMap<String, String>>,
/// Connected is true when this org has a stored row for the platform — it has been configured here at least once. It says nothing about whether a credential still resolves; that is Live.
#[serde(rename = "connected", skip_serializing_if = "Option::is_none")]
pub connected: Option<bool>,
/// Enabled is whether the fan-out forwards to this destination. False on a destination that is connected but paused, and on one never connected.
#[serde(rename = "enabled", skip_serializing_if = "Option::is_none")]
pub enabled: Option<bool>,
/// Fields are the non-secret inputs this platform needs, which the console card renders and the connect body fills.
#[serde(rename = "fields", skip_serializing_if = "Option::is_none")]
pub fields: Option<Vec<models::DestinationField>>,
/// Live is whether a credential resolves RIGHT NOW: a KMS-sealed secret for this org, else the integrations connection named by the platform's Fallback, else no credential needed at all (a public-ingest sink like Analytics). False on a connected destination whose secret has gone missing — Connected && !Live is exactly the \"reconnect me\" state.
#[serde(rename = "live", skip_serializing_if = "Option::is_none")]
pub live: Option<bool>,
/// the platform's display name (\"Google Analytics 4\")
#[serde(rename = "name", skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
/// Pixel is whether the hosted tag can inject a browser pixel for this platform, so a console offers a per-SITE pixel input for exactly these. False means the platform receives conversions server-side only, and an input would promise an injection that never happens. Derived from the tag's own map (event.BrowserTags), never restated — a second list is how a console offers a pixel nothing fires.
#[serde(rename = "pixel", skip_serializing_if = "Option::is_none")]
pub pixel: Option<bool>,
/// the platform slug, and the path segment every route addresses it by
#[serde(rename = "platform", skip_serializing_if = "Option::is_none")]
pub platform: Option<String>,
/// Secrets are the KMS secret NAMES this platform custodies for the org — names only, never values. The connect body accepts each under its camelCase form.
#[serde(rename = "secrets", skip_serializing_if = "Option::is_none")]
pub secrets: Option<Vec<String>>,
}
impl DestinationStatus {
pub fn new() -> DestinationStatus {
DestinationStatus {
account: None,
category: None,
config: None,
connected: None,
enabled: None,
fields: None,
live: None,
name: None,
pixel: None,
platform: None,
secrets: None,
}
}
}