Struct google_doubleclickbidmanager1::QueryMetadata[][src]

pub struct QueryMetadata {
    pub google_cloud_storage_path_for_latest_report: Option<String>,
    pub data_range: Option<String>,
    pub send_notification: Option<bool>,
    pub locale: Option<String>,
    pub google_drive_path_for_latest_report: Option<String>,
    pub format: Option<String>,
    pub share_email_address: Option<Vec<String>>,
    pub report_count: Option<i32>,
    pub running: Option<bool>,
    pub latest_report_run_time_ms: Option<String>,
    pub title: Option<String>,
}

Query metadata.

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

Fields

The path to the location in Google Cloud Storage where the latest report is stored.

Range of report data.

Whether to send an email notification when a report is ready. Default to false.

Locale of the generated reports. Valid values are cs CZECH de GERMAN en ENGLISH es SPANISH fr FRENCH it ITALIAN ja JAPANESE ko KOREAN pl POLISH pt-BR BRAZILIAN_PORTUGUESE ru RUSSIAN tr TURKISH uk UKRAINIAN zh-CN CHINA_CHINESE zh-TW TAIWAN_CHINESE

An locale string not in the list above will generate reports in English.

The path in Google Drive for the latest report.

Format of the generated report.

List of email addresses which are sent email notifications when the report is finished. Separate from sendNotification.

Number of reports that have been generated for the query.

Whether the latest report is currently running.

The time when the latest report started to run.

Query title. It is used to name the reports generated from this query.

Trait Implementations

impl Default for QueryMetadata
[src]

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

impl Clone for QueryMetadata
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for QueryMetadata
[src]

Formats the value using the given formatter. Read more

impl Part for QueryMetadata
[src]

Auto Trait Implementations