Struct google_dfareporting3d2::api::RemarketingList[][src]

pub struct RemarketingList {
    pub account_id: Option<String>,
    pub active: Option<bool>,
    pub advertiser_id: Option<String>,
    pub advertiser_id_dimension_value: Option<DimensionValue>,
    pub description: Option<String>,
    pub id: Option<String>,
    pub kind: Option<String>,
    pub life_span: Option<String>,
    pub list_population_rule: Option<ListPopulationRule>,
    pub list_size: Option<String>,
    pub list_source: Option<String>,
    pub name: Option<String>,
    pub subaccount_id: Option<String>,
}

Contains properties of a remarketing list. Remarketing enables you to create lists of users who have performed specific actions on a site, then target ads to members of those lists. This resource can be used to manage remarketing lists that are owned by your advertisers. To see all remarketing lists that are visible to your advertisers, including those that are shared to your advertiser or account, use the TargetableRemarketingLists resource.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

account_id: Option<String>

Account ID of this remarketing list. This is a read-only, auto-generated field that is only returned in GET requests.

active: Option<bool>

Whether this remarketing list is active.

advertiser_id: Option<String>

Dimension value for the advertiser ID that owns this remarketing list. This is a required field.

advertiser_id_dimension_value: Option<DimensionValue>

Dimension value for the ID of the advertiser. This is a read-only, auto-generated field.

description: Option<String>

Remarketing list description.

id: Option<String>

Remarketing list ID. This is a read-only, auto-generated field.

kind: Option<String>

Identifies what kind of resource this is. Value: the fixed string “dfareporting#remarketingList”.

life_span: Option<String>

Number of days that a user should remain in the remarketing list without an impression. Acceptable values are 1 to 540, inclusive.

list_population_rule: Option<ListPopulationRule>

Rule used to populate the remarketing list with users.

list_size: Option<String>

Number of users currently in the list. This is a read-only field.

list_source: Option<String>

Product from which this remarketing list was originated.

name: Option<String>

Name of the remarketing list. This is a required field. Must be no greater than 128 characters long.

subaccount_id: Option<String>

Subaccount ID of this remarketing list. This is a read-only, auto-generated field that is only returned in GET requests.

Trait Implementations

impl Clone for RemarketingList[src]

impl Debug for RemarketingList[src]

impl Default for RemarketingList[src]

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

impl RequestValue for RemarketingList[src]

impl Resource for RemarketingList[src]

impl ResponseResult for RemarketingList[src]

impl Serialize for RemarketingList[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> Instrument 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.