pub struct RemarketingList {Show 13 fields
pub list_population_rule: Option<ListPopulationRule>,
pub kind: Option<String>,
pub subaccount_id: Option<String>,
pub description: Option<String>,
pub list_size: Option<String>,
pub life_span: Option<String>,
pub advertiser_id: Option<String>,
pub list_source: Option<String>,
pub active: Option<bool>,
pub advertiser_id_dimension_value: Option<DimensionValue>,
pub account_id: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
}Expand description
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).
- insert remarketing lists (request|response)
- get remarketing lists (response)
- update remarketing lists (request|response)
- list remarketing lists (none)
- patch remarketing lists (request|response)
Fields§
§list_population_rule: Option<ListPopulationRule>Rule used to populate the remarketing list with users.
kind: Option<String>Identifies what kind of resource this is. Value: the fixed string “dfareporting#remarketingList”.
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.
description: Option<String>Remarketing list description.
list_size: Option<String>Number of users currently in the list. This is a read-only field.
life_span: Option<String>Number of days that a user should remain in the remarketing list without an impression.
advertiser_id: Option<String>Dimension value for the advertiser ID that owns this remarketing list. This is a required field.
list_source: Option<String>Product from which this remarketing list was originated.
active: Option<bool>Whether this remarketing list is active.
advertiser_id_dimension_value: Option<DimensionValue>Dimension value for the ID of the advertiser. This is a read-only, auto-generated field.
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.
id: Option<String>Remarketing list ID. This is a read-only, auto-generated field.
name: Option<String>Name of the remarketing list. This is a required field. Must be no greater than 128 characters long.
Trait Implementations§
Source§impl Clone for RemarketingList
impl Clone for RemarketingList
Source§fn clone(&self) -> RemarketingList
fn clone(&self) -> RemarketingList
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for RemarketingList
impl Debug for RemarketingList
Source§impl Default for RemarketingList
impl Default for RemarketingList
Source§fn default() -> RemarketingList
fn default() -> RemarketingList
Source§impl<'de> Deserialize<'de> for RemarketingList
impl<'de> Deserialize<'de> for RemarketingList
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for RemarketingList
impl Serialize for RemarketingList
impl RequestValue for RemarketingList
impl Resource for RemarketingList
impl ResponseResult for RemarketingList
Auto Trait Implementations§
impl Freeze for RemarketingList
impl RefUnwindSafe for RemarketingList
impl Send for RemarketingList
impl Sync for RemarketingList
impl Unpin for RemarketingList
impl UnwindSafe for RemarketingList
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more