Struct google_urlshortener1::AnalyticsSnapshot [] [src]

pub struct AnalyticsSnapshot {
    pub short_url_clicks: Option<String>,
    pub platforms: Option<Vec<StringCount>>,
    pub browsers: Option<Vec<StringCount>>,
    pub countries: Option<Vec<StringCount>>,
    pub referrers: Option<Vec<StringCount>>,
    pub long_url_clicks: Option<String>,
}

There is no detailed description.

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

Fields

Number of clicks on this short URL.

Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.

Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.

Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.

Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.

Number of clicks on all goo.gl short URLs pointing to this long URL.

Trait Implementations

impl Debug for AnalyticsSnapshot
[src]

Formats the value using the given formatter.

impl Clone for AnalyticsSnapshot
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for AnalyticsSnapshot
[src]

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

impl Part for AnalyticsSnapshot
[src]