[][src]Struct google_displayvideo1::IdFilter

pub struct IdFilter {
    pub insertion_order_ids: Option<Vec<String>>,
    pub ad_group_ad_ids: Option<Vec<String>>,
    pub ad_group_ids: Option<Vec<String>>,
    pub media_product_ids: Option<Vec<String>>,
    pub line_item_ids: Option<Vec<String>>,
    pub campaign_ids: Option<Vec<String>>,
}

A filtering option that filters entities by their entity IDs.

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

Fields

insertion_order_ids: Option<Vec<String>>

Insertion Orders to download by ID. All IDs must belong to the same Advertiser or Partner specified in CreateSdfDownloadTaskRequest.

ad_group_ad_ids: Option<Vec<String>>

TrueView Ads to download by ID. All IDs must belong to the same Advertiser or Partner specified in CreateSdfDownloadTaskRequest.

ad_group_ids: Option<Vec<String>>

TrueView Ad Groups to download by ID. All IDs must belong to the same Advertiser or Partner specified in CreateSdfDownloadTaskRequest.

media_product_ids: Option<Vec<String>>

Media Products to download by ID. All IDs must belong to the same Advertiser or Partner specified in CreateSdfDownloadTaskRequest.

line_item_ids: Option<Vec<String>>

Line Items to download by ID. All IDs must belong to the same Advertiser or Partner specified in CreateSdfDownloadTaskRequest.

campaign_ids: Option<Vec<String>>

Campaigns to download by ID. All IDs must belong to the same Advertiser or Partner specified in CreateSdfDownloadTaskRequest.

Trait Implementations

impl Clone for IdFilter[src]

impl Debug for IdFilter[src]

impl Default for IdFilter[src]

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

impl Part for IdFilter[src]

impl Serialize for IdFilter[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