Struct google_analytics3::AccountSummary[][src]

pub struct AccountSummary {
    pub starred: Option<bool>,
    pub web_properties: Option<Vec<WebPropertySummary>>,
    pub id: Option<String>,
    pub kind: Option<String>,
    pub name: Option<String>,
}

JSON template for an Analytics AccountSummary. An AccountSummary is a lightweight tree comprised of properties/profiles.

This type is not used in any activity, and only used as part of another schema.

Fields

Indicates whether this account is starred or not.

List of web properties under this account.

Account ID.

Resource type for Analytics AccountSummary.

Account name.

Trait Implementations

impl Default for AccountSummary
[src]

Returns the "default value" for a type. Read more

impl Clone for AccountSummary
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AccountSummary
[src]

Formats the value using the given formatter. Read more

impl Part for AccountSummary
[src]

Auto Trait Implementations