Struct google_analytics3::RemarketingAudience
source · pub struct RemarketingAudience {Show 14 fields
pub linked_ad_accounts: Option<Vec<LinkedForeignAccount>>,
pub kind: Option<String>,
pub audience_definition: Option<RemarketingAudienceAudienceDefinition>,
pub description: Option<String>,
pub created: Option<String>,
pub updated: Option<String>,
pub internal_web_property_id: Option<String>,
pub linked_views: Option<Vec<String>>,
pub state_based_audience_definition: Option<RemarketingAudienceStateBasedAudienceDefinition>,
pub audience_type: Option<String>,
pub web_property_id: Option<String>,
pub account_id: Option<String>,
pub id: Option<String>,
pub name: 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 insert management (request|response)
- remarketing audience get management (response)
- remarketing audience update management (request|response)
- remarketing audience patch management (request|response)
Fields§
§linked_ad_accounts: Option<Vec<LinkedForeignAccount>>The linked ad accounts associated with this remarketing audience. A remarketing audience can have only one linkedAdAccount currently.
kind: Option<String>Collection type.
audience_definition: Option<RemarketingAudienceAudienceDefinition>The simple audience definition that will cause a user to be added to an audience.
description: Option<String>The description of this remarketing audience.
created: Option<String>Time this remarketing audience was created.
updated: Option<String>Time this remarketing audience was last modified.
internal_web_property_id: Option<String>Internal ID for the web property to which this remarketing audience belongs.
linked_views: Option<Vec<String>>The views (profiles) that this remarketing audience is linked to.
state_based_audience_definition: Option<RemarketingAudienceStateBasedAudienceDefinition>A state based audience definition that will cause a user to be added or removed from an audience.
audience_type: Option<String>The type of audience, either SIMPLE or STATE_BASED.
web_property_id: Option<String>Web property ID of the form UA-XXXXX-YY to which this remarketing audience belongs.
account_id: Option<String>Account ID to which this remarketing audience belongs.
id: Option<String>Remarketing Audience ID.
name: Option<String>The name of this remarketing audience.
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 Deserialize for RemarketingAudience
impl Deserialize for RemarketingAudience
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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