View Source ExOAPI.Stripe.Schemas.FinancialReportingFinanceReportRunRunParameters (exoapi_stripe v0.1.4)
::columns :: :string
:connected_account :: :string
Connected account ID by which to filter the report run.
:currency :: :string
Currency of objects to be included in the report run.
:interval_end :: :integer
Ending timestamp of data to be included in the report run (exclusive).
:interval_start :: :integer
Starting timestamp of data to be included in the report run.
:payout :: ExOAPI.Stripe.Schemas.Payout
Payout ID by which to filter the report run.
:reporting_category :: :string
Category of balance transactions to be included in the report run.
:timezone :: :string
Defaults to Etc/UTC
. The output timezone for all timestamps in the report. A list of possible time zone values is maintained at the IANA Time Zone Database. Has no effect on interval_start
or interval_end
.
Link to this section Summary
Link to this section Types
@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.FinancialReportingFinanceReportRunRunParameters{ columns: [String.t()] | nil, connected_account: String.t() | nil, currency: String.t() | nil, interval_end: integer() | nil, interval_start: integer() | nil, payout: String.t() | nil, reporting_category: String.t() | nil, timezone: String.t() | nil }
Link to this section Functions
@spec changeset(t(), params()) :: Ecto.Changeset.t()