[][src]Struct google_doubleclickbidmanager1::QueryMetadata

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

google_cloud_storage_path_for_latest_report: Option<String>

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

data_range: Option<String>

Range of report data.

send_notification: Option<bool>

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

locale: Option<String>

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.

google_drive_path_for_latest_report: Option<String>

The path in Google Drive for the latest report.

format: Option<String>

Format of the generated report.

share_email_address: Option<Vec<String>>

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

report_count: Option<i32>

Number of reports that have been generated for the query.

running: Option<bool>

Whether the latest report is currently running.

latest_report_run_time_ms: Option<String>

The time when the latest report started to run.

title: Option<String>

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

Trait Implementations

impl Part for QueryMetadata[src]

impl Default for QueryMetadata[src]

impl Clone for QueryMetadata[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for QueryMetadata[src]

impl Serialize for QueryMetadata[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]