Struct google_analytics3::ProfileSummary[][src]

pub struct ProfileSummary {
    pub starred: Option<bool>,
    pub type_: Option<String>,
    pub id: Option<String>,
    pub kind: Option<String>,
    pub name: Option<String>,
}

JSON template for an Analytics ProfileSummary. ProfileSummary returns basic information (i.e., summary) for a profile.

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

Fields

Indicates whether this view (profile) is starred or not.

View (Profile) type. Supported types: WEB or APP.

View (profile) ID.

Resource type for Analytics ProfileSummary.

View (profile) name.

Trait Implementations

impl Default for ProfileSummary
[src]

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

impl Clone for ProfileSummary
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ProfileSummary
[src]

Formats the value using the given formatter. Read more

impl Part for ProfileSummary
[src]

Auto Trait Implementations