Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Latest commit

 

History

History
30 lines (24 loc) · 810 Bytes

BankAccountFundingSourceModelAllOf.md

File metadata and controls

30 lines (24 loc) · 810 Bytes

Marqeta::BankAccountFundingSourceModelAllOf

Properties

Name Type Description Notes
user_token String Required if 'business_token' is null [optional]
business_token String Required if 'user_token' is null [optional]
account_suffix String
account_type String
name_on_account String
routing_number String
verification_status String

Example

require 'marqeta'

instance = Marqeta::BankAccountFundingSourceModelAllOf.new(
  user_token: null,
  business_token: null,
  account_suffix: null,
  account_type: null,
  name_on_account: null,
  routing_number: null,
  verification_status: null
)