Struct stripe::generated::scheduled_query_run::ScheduledQueryRun
source · 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,
}Expand description
The resource representing a Stripe “ScheduledQueryRun”.
For more details see https://stripe.com/docs/api/sigma/scheduled_queries/object
Fields§
§id: ScheduledQueryRunIdUnique identifier for the object.
created: TimestampTime at which the object was created.
Measured in seconds since the Unix epoch.
data_load_time: TimestampWhen 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: boolHas the value true if the object exists in live mode or the value false if the object exists in test mode.
result_available_until: TimestampTime at which the result expires and is no longer available for download.
sql: StringSQL for the query.
status: StringThe query’s execution status, which will be completed for successful runs, and canceled, failed, or timed_out otherwise.
title: StringTitle of the query.
Trait Implementations§
source§impl Clone for ScheduledQueryRun
impl Clone for ScheduledQueryRun
source§fn clone(&self) -> ScheduledQueryRun
fn clone(&self) -> ScheduledQueryRun
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ScheduledQueryRun
impl Debug for ScheduledQueryRun
source§impl Default for ScheduledQueryRun
impl Default for ScheduledQueryRun
source§fn default() -> ScheduledQueryRun
fn default() -> ScheduledQueryRun
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ScheduledQueryRun
impl<'de> Deserialize<'de> for ScheduledQueryRun
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more