View Source ExOAPI.Stripe.Schemas.InvoicesStatusTransitions (exoapi_stripe v0.1.4)

:finalized_at :: :integer

The time that the invoice draft was finalized.

:marked_uncollectible_at :: :integer

The time that the invoice was marked uncollectible.

:paid_at :: :integer

The time that the invoice was paid.

:voided_at :: :integer

The time that the invoice was voided.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.InvoicesStatusTransitions{
  finalized_at: integer() | nil,
  marked_uncollectible_at: integer() | nil,
  paid_at: integer() | nil,
  voided_at: integer() | nil
}

Link to this section Functions

Link to this function

changeset(struct \\ %__MODULE__{}, params)

View Source
@spec changeset(t(), params()) :: Ecto.Changeset.t()