ReportingReportRun constructor

const ReportingReportRun({
  1. required DateTime created,
  2. String? error,
  3. required String id,
  4. required bool livemode,
  5. required FinancialReportingFinanceReportRunRunParameters parameters,
  6. required String reportType,
  7. File? result,
  8. required String status,
  9. DateTime? succeededAt,
})

reporting_report_run

The Report Run object represents an instance of a report type generated with specific run parameters. Once the object is created, Stripe begins processing the report. When the report has finished running, it will give you a reference to a file where you can retrieve your results. For an overview, see [API Access to Reports](https://stripe.com/docs/reporting/statements/api). Note that certain report types can only be run based on your live-mode data (not test-mode data), and will error when queried without a [live-mode API key](https://stripe.com/docs/keys#test-live-modes).

Implementation

const ReportingReportRun({
  required this.created,
  this.error,
  required this.id,
  required this.livemode,
  required this.parameters,
  required this.reportType,
  this.result,
  required this.status,
  this.succeededAt,
});