Struct stripe::ScheduledQueryRun[][src]

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

The resource representing a Stripe scheduled query run.

For more details see https://stripe.com/docs/api#scheduled_query_run_object.

Fields

Trait Implementations

impl Debug for ScheduledQueryRun
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations