[][src]Struct google_displayvideo1::CreateSdfDownloadTaskRequest

pub struct CreateSdfDownloadTaskRequest {
    pub advertiser_id: Option<String>,
    pub version: Option<String>,
    pub inventory_source_filter: Option<InventorySourceFilter>,
    pub parent_entity_filter: Option<ParentEntityFilter>,
    pub partner_id: Option<String>,
    pub id_filter: Option<IdFilter>,
}

Request message for [SdfDownloadTaskService.CreateSdfDownloadTask].

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

advertiser_id: Option<String>

The ID of the advertiser to download SDF for.

version: Option<String>

Required. The SDF version of the downloaded file. If set to SDF_VERSION_UNSPECIFIED, this will default to the version specified by the advertiser or partner identified by root_id. An advertiser inherits its SDF version from its partner unless configured otherwise.

inventory_source_filter: Option<InventorySourceFilter>

Filters on Inventory Sources by their IDs.

parent_entity_filter: Option<ParentEntityFilter>

Filters on selected file types. The entities in each file are filtered by a chosen set of filter entities. The filter entities must be the same type as, or a parent type of, the selected file types.

partner_id: Option<String>

The ID of the partner to download SDF for.

id_filter: Option<IdFilter>

Filters on entities by their entity IDs.

Trait Implementations

impl Clone for CreateSdfDownloadTaskRequest[src]

impl Debug for CreateSdfDownloadTaskRequest[src]

impl Default for CreateSdfDownloadTaskRequest[src]

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

impl RequestValue for CreateSdfDownloadTaskRequest[src]

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