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 resources closed.ex
Raw

lib/stripe/resources/closed.ex

# File generated from our OpenAPI spec
defmodule Stripe.Resources.Closed do
@moduledoc """
TreasuryFinancialAccountsResourceClosedStatusDetails
"""
@typedoc """
* `reasons` - The array that contains reasons for a FinancialAccount closure.
"""
@type t :: %__MODULE__{
reasons: [String.t()]
}
defstruct [:reasons]
@object_name "treasury_financial_accounts_resource_closed_status_details"
def object_name, do: @object_name
end