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

Latest commit

 

History

History
32 lines (26 loc) · 869 Bytes

ClearingModel.md

File metadata and controls

32 lines (26 loc) · 869 Bytes

Marqeta::ClearingModel

Properties

Name Type Description Notes
network_fees Array<NetworkFeeModel> [optional]
webhook Webhook [optional]
is_refund Boolean [optional][default to false]
force_post Boolean [optional][default to false]
amount Float
original_transaction_token String
mid String [optional]
card_acceptor CardAcceptorModel [optional]

Example

require 'marqeta'

instance = Marqeta::ClearingModel.new(
  network_fees: null,
  webhook: null,
  is_refund: null,
  force_post: null,
  amount: null,
  original_transaction_token: null,
  mid: null,
  card_acceptor: null
)