[][src]Struct google_analyticsreporting4::GoalData

pub struct GoalData {
    pub goal_completions: Option<String>,
    pub goal_value: Option<f64>,
    pub goal_name: Option<String>,
    pub goal_previous_step1: Option<String>,
    pub goal_previous_step3: Option<String>,
    pub goal_previous_step2: Option<String>,
    pub goal_index: Option<i32>,
    pub goal_completion_location: Option<String>,
}

Represents all the details pertaining to a goal.

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

Fields

goal_completions: Option<String>

Total number of goal completions in this activity.

goal_value: Option<f64>

Value in this goal.

goal_name: Option<String>

Name of the goal.

goal_previous_step1: Option<String>

URL of the page one step prior to the goal completion.

goal_previous_step3: Option<String>

URL of the page three steps prior to the goal completion.

goal_previous_step2: Option<String>

URL of the page two steps prior to the goal completion.

goal_index: Option<i32>

This identifies the goal as configured for the profile.

goal_completion_location: Option<String>

URL of the page where this goal was completed.

Trait Implementations

impl Clone for GoalData[src]

impl Debug for GoalData[src]

impl Default for GoalData[src]

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

impl Part for GoalData[src]

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