[][src]Struct google_analytics3::IncludeConditions

pub struct IncludeConditions {
    pub days_to_look_back: Option<i32>,
    pub is_smart_list: Option<bool>,
    pub kind: Option<String>,
    pub segment: Option<String>,
    pub membership_duration_days: Option<i32>,
}

JSON template for an Analytics Remarketing Include Conditions.

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

Fields

days_to_look_back: Option<i32>

The look-back window lets you specify a time frame for evaluating the behavior that qualifies users for your audience. For example, if your filters include users from Central Asia, and Transactions Greater than 2, and you set the look-back window to 14 days, then any user from Central Asia whose cumulative transactions exceed 2 during the last 14 days is added to the audience.

is_smart_list: Option<bool>

Boolean indicating whether this segment is a smart list. https://support.google.com/analytics/answer/4628577

kind: Option<String>

Resource type for include conditions.

segment: Option<String>

The segment condition that will cause a user to be added to an audience.

membership_duration_days: Option<i32>

Number of days (in the range 1 to 540) a user remains in the audience.

Trait Implementations

impl Clone for IncludeConditions[src]

impl Debug for IncludeConditions[src]

impl Default for IncludeConditions[src]

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

impl Part for IncludeConditions[src]

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