[][src]Struct stripe::ScheduledQueryRun

pub struct ScheduledQueryRun {
    pub id: ScheduledQueryRunId,
    pub created: Timestamp,
    pub data_load_time: Timestamp,
    pub error: Option<SigmaScheduledQueryRunError>,
    pub file: Option<File>,
    pub livemode: bool,
    pub result_available_until: Timestamp,
    pub sql: String,
    pub status: String,
    pub title: String,
}

The resource representing a Stripe "ScheduledQueryRun".

Fields

id: ScheduledQueryRunId

Unique identifier for the object.

created: Timestamp

Time at which the object was created.

Measured in seconds since the Unix epoch.

data_load_time: Timestamp

When the query was run, Sigma contained a snapshot of your Stripe data at this time.

error: Option<SigmaScheduledQueryRunError>file: Option<File>

The file object representing the results of the query.

livemode: bool

Has the value true if the object exists in live mode or the value false if the object exists in test mode.

result_available_until: Timestamp

Time at which the result expires and is no longer available for download.

sql: String

SQL for the query.

status: String

The query's execution status, which will be completed for successful runs, and canceled, failed, or timed_out otherwise.

title: String

Title of the query.

Trait Implementations

impl Object for ScheduledQueryRun[src]

type Id = ScheduledQueryRunId

The canonical id type for this object.

impl Clone for ScheduledQueryRun[src]

impl Debug for ScheduledQueryRun[src]

impl Serialize for ScheduledQueryRun[src]

impl<'de> Deserialize<'de> for ScheduledQueryRun[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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err

impl<T> Same<T> for T

type Output = T

Should always be Self