Struct google_doubleclickbidmanager1::RunQueryRequest[][src]

pub struct RunQueryRequest {
    pub report_data_end_time_ms: Option<String>,
    pub timezone_code: Option<String>,
    pub report_data_start_time_ms: Option<String>,
    pub data_range: Option<String>,
}

Request to run a stored query to generate a report.

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

The ending time for the data that is shown in the report. Note, reportDataEndTimeMs is required if dataRange is CUSTOM_DATES and ignored otherwise.

Canonical timezone code for report data time. Defaults to America/New_York.

The starting time for the data that is shown in the report. Note, reportDataStartTimeMs is required if dataRange is CUSTOM_DATES and ignored otherwise.

Report data range used to generate the report.

Trait Implementations

impl Default for RunQueryRequest
[src]

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

impl Clone for RunQueryRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for RunQueryRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for RunQueryRequest
[src]

Auto Trait Implementations