Struct google_analytics3::api::RemarketingAudience[][src]

pub struct RemarketingAudience {
    pub account_id: Option<String>,
    pub audience_definition: Option<RemarketingAudienceAudienceDefinition>,
    pub audience_type: Option<String>,
    pub created: Option<String>,
    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<String>,
    pub web_property_id: Option<String>,
}

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).

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<String>

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<String>

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

impl Clone for RemarketingAudience[src]

impl Debug for RemarketingAudience[src]

impl Default for RemarketingAudience[src]

impl<'de> Deserialize<'de> for RemarketingAudience[src]

impl RequestValue for RemarketingAudience[src]

impl ResponseResult for RemarketingAudience[src]

impl Serialize for RemarketingAudience[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.