[][src]Struct google_analytics3::WebPropertySummary

pub struct WebPropertySummary {
    pub kind: Option<String>,
    pub name: Option<String>,
    pub level: Option<String>,
    pub profiles: Option<Vec<ProfileSummary>>,
    pub website_url: Option<String>,
    pub internal_web_property_id: Option<String>,
    pub starred: Option<bool>,
    pub id: Option<String>,
}

JSON template for an Analytics WebPropertySummary. WebPropertySummary returns basic information (i.e., summary) for a web property.

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

Fields

kind: Option<String>

Resource type for Analytics WebPropertySummary.

name: Option<String>

Web property name.

level: Option<String>

Level for this web property. Possible values are STANDARD or PREMIUM.

profiles: Option<Vec<ProfileSummary>>

List of profiles under this web property.

website_url: Option<String>

Website url for this web property.

internal_web_property_id: Option<String>

Internal ID for this web property.

starred: Option<bool>

Indicates whether this web property is starred or not.

id: Option<String>

Web property ID of the form UA-XXXXX-YY.

Trait Implementations

impl Clone for WebPropertySummary[src]

impl Debug for WebPropertySummary[src]

impl Default for WebPropertySummary[src]

impl<'de> Deserialize<'de> for WebPropertySummary[src]

impl Part for WebPropertySummary[src]

impl Serialize for WebPropertySummary[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any