ReportRunParameters constructor

const ReportRunParameters({
  1. List<String>? columns,
  2. String? connectedAccount,
  3. String? currency,
  4. DateTime? intervalEnd,
  5. DateTime? intervalStart,
  6. String? payout,
  7. ReportRunReportingCategory? reportingCategory,
  8. ReportRunTimezone? timezone,
})

run_parameter_specs

Parameters specifying how the report should be run. Different Report Types have different required and optional parameters, listed in the [API Access to Reports](https://stripe.com/docs/reporting/statements/api) documentation.

Implementation

const ReportRunParameters({
  this.columns,
  this.connectedAccount,
  this.currency,
  this.intervalEnd,
  this.intervalStart,
  this.payout,
  this.reportingCategory,
  this.timezone,
});