pub struct TargetableRemarketingList {
pub account_id: Option<i64>,
pub active: Option<bool>,
pub advertiser_id: Option<i64>,
pub advertiser_id_dimension_value: Option<DimensionValue>,
pub description: Option<String>,
pub id: Option<i64>,
pub kind: Option<String>,
pub life_span: Option<i64>,
pub list_size: Option<i64>,
pub list_source: Option<String>,
pub name: Option<String>,
pub subaccount_id: Option<i64>,
}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).
- get targetable remarketing lists (response)
- list targetable remarketing lists (none)
Fields§
§account_id: Option<i64>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 targetable remarketing list is active.
advertiser_id: Option<i64>Dimension value for the advertiser ID that owns this targetable remarketing list.
advertiser_id_dimension_value: Option<DimensionValue>Dimension value for the ID of the advertiser.
description: Option<String>Targetable remarketing list description.
id: Option<i64>Targetable remarketing list ID.
kind: Option<String>Identifies what kind of resource this is. Value: the fixed string “dfareporting#targetableRemarketingList”.
life_span: Option<i64>Number of days that a user should remain in the targetable remarketing list without an impression.
list_size: Option<i64>Number of users currently in the list. This is a read-only field.
list_source: Option<String>Product from which this targetable remarketing list was originated.
name: Option<String>Name of the targetable remarketing list. Is no greater than 128 characters long.
subaccount_id: Option<i64>Subaccount ID of this remarketing list. This is a read-only, auto-generated field that is only returned in GET requests.
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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