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

Latest commit

 

History

History
34 lines (28 loc) · 890 Bytes

FinancialRequestModel.md

File metadata and controls

34 lines (28 loc) · 890 Bytes

Marqeta::FinancialRequestModel

Properties

Name Type Description Notes
amount Float
card_token String
pin String [optional]
mid String
cash_back_amount Float [optional]
is_pre_auth Boolean [optional][default to false]
card_acceptor CardAcceptorModel
transaction_options TransactionOptions [optional]
webhook Webhook [optional]

Example

require 'marqeta'

instance = Marqeta::FinancialRequestModel.new(
  amount: null,
  card_token: null,
  pin: null,
  mid: null,
  cash_back_amount: null,
  is_pre_auth: null,
  card_acceptor: null,
  transaction_options: null,
  webhook: null
)