[][src]Struct google_analyticsreporting4::Activity

pub struct Activity {
    pub custom_dimension: Option<Vec<CustomDimension>>,
    pub landing_page_path: Option<String>,
    pub hostname: Option<String>,
    pub ecommerce: Option<EcommerceData>,
    pub keyword: Option<String>,
    pub campaign: Option<String>,
    pub activity_type: Option<String>,
    pub pageview: Option<PageviewData>,
    pub appview: Option<ScreenviewData>,
    pub source: Option<String>,
    pub medium: Option<String>,
    pub channel_grouping: Option<String>,
    pub activity_time: Option<String>,
    pub event: Option<EventData>,
    pub goals: Option<GoalSetData>,
}

An Activity represents data for an activity of a user. Note that an Activity is different from a hit. A hit might result in multiple Activity's. For example, if a hit includes a transaction and a goal completion, there will be two Activity protos for this hit, one for ECOMMERCE and one for GOAL. Conversely, multiple hits can also construct one Activity. In classic e-commerce, data for one transaction might be sent through multiple hits. These hits will be merged into one ECOMMERCE Activity.

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

Fields

custom_dimension: Option<Vec<CustomDimension>>

A list of all custom dimensions associated with this activity.

landing_page_path: Option<String>

The first page in users' sessions, or the landing page.

hostname: Option<String>

The hostname from which the tracking request was made.

ecommerce: Option<EcommerceData>

This will be set if activity_type equals ECOMMERCE.

keyword: Option<String>

For manual campaign tracking, it is the value of the utm_term campaign tracking parameter. For AdWords traffic, it contains the best matching targeting criteria. For the display network, where multiple targeting criteria could have caused the ad to show up, it returns the best matching targeting criteria as selected by Ads. This could be display_keyword, site placement, boomuserlist, user_interest, age, or gender. Otherwise its value is (not set).

campaign: Option<String>

For manual campaign tracking, it is the value of the utm_campaign campaign tracking parameter. For AdWords autotagging, it is the name(s) of the online ad campaign(s) you use for the property. If you use neither, its value is (not set).

activity_type: Option<String>

Type of this activity.

pageview: Option<PageviewData>

This will be set if activity_type equals PAGEVIEW. This field contains all the details about the visitor and the page that was visited.

appview: Option<ScreenviewData>

This will be set if activity_type equals SCREEN_VIEW.

source: Option<String>

The source of referrals. For manual campaign tracking, it is the value of the utm_source campaign tracking parameter. For AdWords autotagging, it is google. If you use neither, it is the domain of the source (e.g., document.referrer) referring the users. It may also contain a port address. If users arrived without a referrer, its value is (direct).

medium: Option<String>

The type of referrals. For manual campaign tracking, it is the value of the utm_medium campaign tracking parameter. For AdWords autotagging, it is cpc. If users came from a search engine detected by Google Analytics, it is organic. If the referrer is not a search engine, it is referral. If users came directly to the property and document.referrer is empty, its value is (none).

channel_grouping: Option<String>

The Channel Group associated with an end user's session for this View (defined by the View's Channel Groupings).

activity_time: Option<String>

Timestamp of the activity. If activities for a visit cross midnight and occur in two separate dates, then two sessions (one per date) share the session identifier. For example, say session ID 113472 has activity within 2019-08-20, and session ID 243742 has activity within 2019-08-25 and 2019-08-26. Session ID 113472 is one session, and session ID 243742 is two sessions.

event: Option<EventData>

This field contains all the details pertaining to an event and will be set if activity_type equals EVENT.

goals: Option<GoalSetData>

This field contains a list of all the goals that were reached in this activity when activity_type equals GOAL.

Trait Implementations

impl Clone for Activity[src]

impl Debug for Activity[src]

impl Default for Activity[src]

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

impl Part for Activity[src]

impl Serialize for Activity[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