pub struct TargetableRemarketingList {
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 targetable 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 is a read-only view of a remarketing list to be used to faciliate targeting ads to specific lists. Remarketing lists that are owned by your advertisers and those that are shared to your advertisers or account are accessible via this resource. To manage remarketing lists that are owned by your advertisers, use the RemarketingLists 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).
- list targetable remarketing lists (none)
- get targetable remarketing lists (response)
Fields§
§kind: Option<String>Identifies what kind of resource this is. Value: the fixed string “dfareporting#targetableRemarketingList”.
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>Targetable 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 targetable remarketing list without an impression.
advertiser_id: Option<String>Dimension value for the advertiser ID that owns this targetable remarketing list.
list_source: Option<String>Product from which this targetable remarketing list was originated.
active: Option<bool>Whether this targetable remarketing list is active.
advertiser_id_dimension_value: Option<DimensionValue>Dimension value for the ID of the advertiser.
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>Targetable remarketing list ID.
name: Option<String>Name of the targetable remarketing list. Is no greater than 128 characters long.
Trait Implementations§
Source§impl Clone for TargetableRemarketingList
impl Clone for TargetableRemarketingList
Source§fn clone(&self) -> TargetableRemarketingList
fn clone(&self) -> TargetableRemarketingList
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for TargetableRemarketingList
impl Debug for TargetableRemarketingList
Source§impl Default for TargetableRemarketingList
impl Default for TargetableRemarketingList
Source§fn default() -> TargetableRemarketingList
fn default() -> TargetableRemarketingList
Source§impl<'de> Deserialize<'de> for TargetableRemarketingList
impl<'de> Deserialize<'de> for TargetableRemarketingList
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>,
impl Resource for TargetableRemarketingList
impl ResponseResult for TargetableRemarketingList
Auto Trait Implementations§
impl Freeze for TargetableRemarketingList
impl RefUnwindSafe for TargetableRemarketingList
impl Send for TargetableRemarketingList
impl Sync for TargetableRemarketingList
impl Unpin for TargetableRemarketingList
impl UnwindSafe for TargetableRemarketingList
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