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 bank_transfer.ex
Raw

lib/stripe/resources/bank_transfer.ex

# File generated from our OpenAPI spec
defmodule Stripe.Resources.BankTransfer do
@moduledoc """
FundingInstructionsBankTransfer
"""
@typedoc """
* `country` - The country of the bank account to fund Max length: 5000.
* `financial_addresses` - A list of financial addresses that can be used to fund a particular balance Expandable.
* `type` - The bank_transfer type Possible values: `eu_bank_transfer`, `jp_bank_transfer`.
"""
@type t :: %__MODULE__{
country: String.t(),
financial_addresses: [map()],
type: String.t()
}
defstruct [:country, :financial_addresses, :type]
@object_name "funding_instructions_bank_transfer"
def object_name, do: @object_name
def expandable_fields, do: ["financial_addresses"]
end