[][src]Struct google_dfareporting3d3::ListPopulationTerm

pub struct ListPopulationTerm {
    pub remarketing_list_id: Option<String>,
    pub contains: Option<bool>,
    pub negation: Option<bool>,
    pub value: Option<String>,
    pub variable_friendly_name: Option<String>,
    pub operator: Option<String>,
    pub type_: Option<String>,
    pub variable_name: Option<String>,
}

Remarketing List Population Rule Term.

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

Fields

remarketing_list_id: Option<String>

ID of the list in question. This field is only relevant when type is set to LIST_MEMBERSHIP_TERM.

contains: Option<bool>

Will be true if the term should check if the user is in the list and false if the term should check if the user is not in the list. This field is only relevant when type is set to LIST_MEMBERSHIP_TERM. False by default.

negation: Option<bool>

Whether to negate the comparison result of this term during rule evaluation. This field is only relevant when type is left unset or set to CUSTOM_VARIABLE_TERM or REFERRER_TERM.

value: Option<String>

Literal to compare the variable to. This field is only relevant when type is left unset or set to CUSTOM_VARIABLE_TERM or REFERRER_TERM.

variable_friendly_name: Option<String>

Friendly name of this term's variable. This is a read-only, auto-generated field. This field is only relevant when type is left unset or set to CUSTOM_VARIABLE_TERM.

operator: Option<String>

Comparison operator of this term. This field is only relevant when type is left unset or set to CUSTOM_VARIABLE_TERM or REFERRER_TERM.

type_: Option<String>

List population term type determines the applicable fields in this object. If left unset or set to CUSTOM_VARIABLE_TERM, then variableName, variableFriendlyName, operator, value, and negation are applicable. If set to LIST_MEMBERSHIP_TERM then remarketingListId and contains are applicable. If set to REFERRER_TERM then operator, value, and negation are applicable.

variable_name: Option<String>

Name of the variable (U1, U2, etc.) being compared in this term. This field is only relevant when type is set to null, CUSTOM_VARIABLE_TERM or REFERRER_TERM.

Trait Implementations

impl Part for ListPopulationTerm[src]

impl Clone for ListPopulationTerm[src]

impl Default for ListPopulationTerm[src]

impl Debug for ListPopulationTerm[src]

impl Serialize for ListPopulationTerm[src]

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

Auto Trait Implementations

Blanket Implementations

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 = !

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

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