Struct google_doubleclickbidmanager1::QuerySchedule[][src]

pub struct QuerySchedule {
    pub end_time_ms: Option<String>,
    pub frequency: Option<String>,
    pub next_run_minute_of_day: Option<i32>,
    pub next_run_timezone_code: Option<String>,
}

Information on how frequently and when to run a query.

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

Fields

Datetime to periodically run the query until.

How often the query is run.

Time of day at which a new report will be generated, represented as minutes past midnight. Range is 0 to 1439. Only applies to scheduled reports.

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

Trait Implementations

impl Default for QuerySchedule
[src]

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

impl Clone for QuerySchedule
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for QuerySchedule
[src]

Formats the value using the given formatter. Read more

impl Part for QuerySchedule
[src]

Auto Trait Implementations