pub struct RemarketingAudience {Show 14 fields
pub account_id: Option<String>,
pub audience_definition: Option<RemarketingAudienceAudienceDefinition>,
pub audience_type: Option<String>,
pub created: Option<DateTime<Utc>>,
pub description: Option<String>,
pub id: Option<String>,
pub internal_web_property_id: Option<String>,
pub kind: Option<String>,
pub linked_ad_accounts: Option<Vec<LinkedForeignAccount>>,
pub linked_views: Option<Vec<String>>,
pub name: Option<String>,
pub state_based_audience_definition: Option<RemarketingAudienceStateBasedAudienceDefinition>,
pub updated: Option<DateTime<Utc>>,
pub web_property_id: Option<String>,
}
Expand description
JSON template for an Analytics remarketing audience.
§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).
- remarketing audience get management (response)
- remarketing audience insert management (request|response)
- remarketing audience patch management (request|response)
- remarketing audience update management (request|response)
Fields§
§account_id: Option<String>
Account ID to which this remarketing audience belongs.
audience_definition: Option<RemarketingAudienceAudienceDefinition>
The simple audience definition that will cause a user to be added to an audience.
audience_type: Option<String>
The type of audience, either SIMPLE or STATE_BASED.
created: Option<DateTime<Utc>>
Time this remarketing audience was created.
description: Option<String>
The description of this remarketing audience.
id: Option<String>
Remarketing Audience ID.
internal_web_property_id: Option<String>
Internal ID for the web property to which this remarketing audience belongs.
kind: Option<String>
Collection type.
linked_ad_accounts: Option<Vec<LinkedForeignAccount>>
The linked ad accounts associated with this remarketing audience. A remarketing audience can have only one linkedAdAccount currently.
linked_views: Option<Vec<String>>
The views (profiles) that this remarketing audience is linked to.
name: Option<String>
The name of this remarketing audience.
state_based_audience_definition: Option<RemarketingAudienceStateBasedAudienceDefinition>
A state based audience definition that will cause a user to be added or removed from an audience.
updated: Option<DateTime<Utc>>
Time this remarketing audience was last modified.
web_property_id: Option<String>
Web property ID of the form UA-XXXXX-YY to which this remarketing audience belongs.
Trait Implementations§
Source§impl Clone for RemarketingAudience
impl Clone for RemarketingAudience
Source§fn clone(&self) -> RemarketingAudience
fn clone(&self) -> RemarketingAudience
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for RemarketingAudience
impl Debug for RemarketingAudience
Source§impl Default for RemarketingAudience
impl Default for RemarketingAudience
Source§fn default() -> RemarketingAudience
fn default() -> RemarketingAudience
Source§impl<'de> Deserialize<'de> for RemarketingAudience
impl<'de> Deserialize<'de> for RemarketingAudience
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 RemarketingAudience
impl Serialize for RemarketingAudience
impl RequestValue for RemarketingAudience
impl ResponseResult for RemarketingAudience
Auto Trait Implementations§
impl Freeze for RemarketingAudience
impl RefUnwindSafe for RemarketingAudience
impl Send for RemarketingAudience
impl Sync for RemarketingAudience
impl Unpin for RemarketingAudience
impl UnwindSafe for RemarketingAudience
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