# `Stripe.Resources.Invoice.StatusTransitions`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/invoice.ex#L891)

Nested struct within the parent resource.

# `t`

```elixir
@type t() :: %Stripe.Resources.Invoice.StatusTransitions{
  finalized_at: integer() | nil,
  marked_uncollectible_at: integer() | nil,
  paid_at: integer() | nil,
  voided_at: integer() | nil
}
```

* `finalized_at` - The time that the invoice draft was finalized. Format: Unix timestamp. Nullable.
* `marked_uncollectible_at` - The time that the invoice was marked uncollectible. Format: Unix timestamp. Nullable.
* `paid_at` - The time that the invoice was paid. Format: Unix timestamp. Nullable.
* `voided_at` - The time that the invoice was voided. Format: Unix timestamp. Nullable.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
