[][src]Struct google_doubleclickbidmanager1d1::QuerySchedule

pub struct QuerySchedule {
    pub start_time_ms: Option<String>,
    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

start_time_ms: Option<String>

When to start running the query. Not applicable to ONE_TIME frequency.

end_time_ms: Option<String>

Datetime to periodically run the query until.

frequency: Option<String>

How often the query is run.

next_run_minute_of_day: Option<i32>

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.

next_run_timezone_code: Option<String>

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

Trait Implementations

impl Clone for QuerySchedule[src]

impl Debug for QuerySchedule[src]

impl Default for QuerySchedule[src]

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

impl Part for QuerySchedule[src]

impl Serialize for QuerySchedule[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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> Typeable for T where
    T: Any