Packages

Complete Stripe SDK for Elixir with parity to the official Ruby SDK. V1+V2 coverage (193 services, 320 resource structs, 525 documented params). Per-event modules, Finch HTTP/2, RustyJSON, automatic retries, OAuth, webhooks, telemetry, per-client config, streaming pagination.

Current section

Files

Jump to
tiger_stripe lib stripe params invoice_finalize_invoice_params.ex
Raw

lib/stripe/params/invoice_finalize_invoice_params.ex

# File generated from our OpenAPI spec
defmodule Stripe.Params.InvoiceFinalizeInvoiceParams do
@moduledoc "Parameters for invoice finalize invoice."
@typedoc """
* `auto_advance` - Controls whether Stripe performs [automatic collection](https://docs.stripe.com/invoicing/integration/automatic-advancement-collection) of the invoice. If `false`, the invoice's state doesn't automatically advance without an explicit action.
* `expand` - Specifies which fields in the response should be expanded.
"""
@type t :: %__MODULE__{
auto_advance: boolean() | nil,
expand: [String.t()] | nil
}
defstruct [:auto_advance, :expand]
end