Struct google_analytics3::api::Account
source · pub struct Account {
pub child_link: Option<AccountChildLink>,
pub created: Option<DateTime<Utc>>,
pub id: Option<String>,
pub kind: Option<String>,
pub name: Option<String>,
pub permissions: Option<AccountPermissions>,
pub self_link: Option<String>,
pub starred: Option<bool>,
pub updated: Option<DateTime<Utc>>,
}Expand description
JSON template for Analytics account entry.
This type is not used in any activity, and only used as part of another schema.
Fields§
§child_link: Option<AccountChildLink>Child link for an account entry. Points to the list of web properties for this account.
created: Option<DateTime<Utc>>Time the account was created.
id: Option<String>Account ID.
kind: Option<String>Resource type for Analytics account.
name: Option<String>Account name.
permissions: Option<AccountPermissions>Permissions the user has for this account.
self_link: Option<String>Link for this account.
starred: Option<bool>Indicates whether this account is starred or not.
updated: Option<DateTime<Utc>>Time the account was last modified.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Account
impl<'de> Deserialize<'de> for Account
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more