ScheduledQueryRun constructor
const
ScheduledQueryRun({})
ScheduledQueryRun
If you have [scheduled a Sigma query](https://stripe.com/docs/sigma/scheduled-queries), you'll receive a `sigma.scheduled_query_run.created` webhook each time the query runs. The webhook contains a `ScheduledQueryRun` object, which you can use to retrieve the query results.
Implementation
const ScheduledQueryRun({
required this.created,
required this.dataLoadTime,
this.error,
this.file,
required this.id,
required this.livemode,
required this.resultAvailableUntil,
required this.sql,
required this.status,
required this.title,
});