Parameters for account external account update.
Summary
Types
@type documents() :: %{ optional(:bank_account_ownership_verification) => documents_bank_account_ownership_verification() | nil, optional(String.t()) => term() }
bank_account_ownership_verification- One or more documents that support the Bank account ownership verification requirement. Must be a document associated with the bank account that displays the last 4 digits of the account number, either a statement or a check.
@type documents_bank_account_ownership_verification() :: %{ optional(:files) => [String.t()] | nil, optional(String.t()) => term() }
files- One or more document ids returned by a file upload with apurposevalue ofaccount_requirement.
@type t() :: %Stripe.Params.AccountExternalAccountUpdateParams{ account_holder_name: String.t() | nil, account_holder_type: String.t() | nil, account_type: String.t() | nil, address_city: String.t() | nil, address_country: String.t() | nil, address_line1: String.t() | nil, address_line2: String.t() | nil, address_state: String.t() | nil, address_zip: String.t() | nil, default_for_currency: boolean() | nil, documents: documents() | nil, exp_month: String.t() | nil, exp_year: String.t() | nil, expand: [String.t()] | nil, metadata: map() | nil, name: String.t() | nil }
account_holder_name- The name of the person or business that owns the bank account. Max length: 5000.account_holder_type- The type of entity that holds the account. This can be eitherindividualorcompany. Possible values:company,individual. Max length: 5000.account_type- The bank account type. This can only becheckingorsavingsin most countries. In Japan, this can only befutsuortoza. Possible values:checking,futsu,savings,toza. Max length: 5000.address_city- City/District/Suburb/Town/Village. Max length: 5000.address_country- Billing address country, if provided when creating card. Max length: 5000.address_line1- Address line 1 (Street address/PO Box/Company name). Max length: 5000.address_line2- Address line 2 (Apartment/Suite/Unit/Building). Max length: 5000.address_state- State/County/Province/Region. Max length: 5000.address_zip- ZIP or postal code. Max length: 5000.default_for_currency- When set to true, this becomes the default external account for its currency.documents- Documents that may be submitted to satisfy various informational requests.exp_month- Two digit number representing the card’s expiration month. Max length: 5000.exp_year- Four digit number representing the card’s expiration year. Max length: 5000.expand- Specifies which fields in the response should be expanded.metadata- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value tometadata.name- Cardholder name. Max length: 5000.