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

Latest commit

 

History

History
44 lines (38 loc) · 1.29 KB

BankTransferResponseModel.md

File metadata and controls

44 lines (38 loc) · 1.29 KB

Marqeta::BankTransferResponseModel

Properties

Name Type Description Notes
token String [optional]
amount Float
fees Array<Float> [optional]
memo String [optional]
funding_source_token String
type String [optional]
currency_code String default = USD [optional]
transfer_speed String default = STANDARD [optional]
standard_entry_class_code String [optional]
status String [optional]
transitions Array<BankTransferTransitionResponseModel> [optional]
batch_number String [optional]
created_time Time [optional]
last_modified_time Time [optional]

Example

require 'marqeta'

instance = Marqeta::BankTransferResponseModel.new(
  token: null,
  amount: null,
  fees: null,
  memo: null,
  funding_source_token: null,
  type: null,
  currency_code: null,
  transfer_speed: null,
  standard_entry_class_code: null,
  status: null,
  transitions: null,
  batch_number: null,
  created_time: null,
  last_modified_time: null
)