[][src]Struct google_displayvideo1::AudienceGroupAssignedTargetingOptionDetails

pub struct AudienceGroupAssignedTargetingOptionDetails {
    pub excluded_google_audience_group: Option<GoogleAudienceGroup>,
    pub included_first_and_third_party_audience_groups: Option<Vec<FirstAndThirdPartyAudienceGroup>>,
    pub included_combined_audience_group: Option<CombinedAudienceGroup>,
    pub included_custom_list_group: Option<CustomListGroup>,
    pub excluded_first_and_third_party_audience_group: Option<FirstAndThirdPartyAudienceGroup>,
    pub included_google_audience_group: Option<GoogleAudienceGroup>,
}

Assigned audience group targeting option details. This will be populated in the details field of an AssignedTargetingOption when targeting_type is TARGETING_TYPE_AUDIENCE_GROUP. The relation between each group is UNION, except for excluded_first_and_third_party_audience_group and excluded_google_audience_group, of which COMPLEMENT is UNION'ed with other groups.

This type is not used in any activity, and only used as part of another schema.

Fields

excluded_google_audience_group: Option<GoogleAudienceGroup>

The Google audience ids of the excluded Google audience group. Used for negative targeting. It's COMPLEMENT is used to UNION other audience groups. Only contains Affinity, In-market and Installed-apps type Google audiences. All items are logically ‘OR’ of each other.

included_first_and_third_party_audience_groups: Option<Vec<FirstAndThirdPartyAudienceGroup>>

The first and third party audience ids and recencies of included first and third party audience groups. Each first and third party audience group contains first and third party audience ids only. The relation between each first and third party audience group is INTERSECTION, and the result is UNION'ed with other audience groups. Repeated groups with same settings will be ignored.

included_combined_audience_group: Option<CombinedAudienceGroup>

The combined audience ids of the included combined audience group. Contains combined audience ids only.

included_custom_list_group: Option<CustomListGroup>

The custom list ids of the included custom list group. Contains custom list ids only.

excluded_first_and_third_party_audience_group: Option<FirstAndThirdPartyAudienceGroup>

The first and third party audience ids and recencies of the excluded first and third party audience group. Used for negative targeting. Its COMPLEMENT is used to UNION other audience groups.

included_google_audience_group: Option<GoogleAudienceGroup>

The Google audience ids of the included Google audience group. Contains Google audience ids only.

Trait Implementations

impl Clone for AudienceGroupAssignedTargetingOptionDetails[src]

impl Debug for AudienceGroupAssignedTargetingOptionDetails[src]

impl Default for AudienceGroupAssignedTargetingOptionDetails[src]

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

impl Part for AudienceGroupAssignedTargetingOptionDetails[src]

impl Serialize for AudienceGroupAssignedTargetingOptionDetails[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, 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.

impl<T> Typeable for T where
    T: Any