Struct google_doubleclickbidmanager1::DownloadLineItemsRequest[][src]

pub struct DownloadLineItemsRequest {
    pub file_spec: Option<String>,
    pub filter_type: Option<String>,
    pub filter_ids: Option<Vec<String>>,
    pub format: Option<String>,
}

Request to fetch stored line items.

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

File specification (column names, types, order) in which the line items will be returned. Default to EWF.

Filter type used to filter line items to fetch.

Ids of the specified filter type used to filter line items to fetch. If omitted, all the line items will be returned.

Format in which the line items will be returned. Default to CSV.

Trait Implementations

impl Default for DownloadLineItemsRequest
[src]

Returns the "default value" for a type. Read more

impl Clone for DownloadLineItemsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DownloadLineItemsRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for DownloadLineItemsRequest
[src]

Auto Trait Implementations