SyncteraRubySdk::FinancialRequestModel

Properties

Name Type Description Notes
amount Integer The amount of the transaction in the smallest whole denomination of the applicable currency (eg. For USD use cents)
card_acceptor CardAcceptorModel
card_id String
cash_back_amount Integer Cash back amount in the smallest whole denomination of the applicable currency (eg. For USD use cents) [optional]
is_pre_auth Boolean [optional][default to false]
mid String
pin String [optional]
transaction_options TransactionOptions [optional]

Example

require 'synctera_ruby_sdk'

instance = SyncteraRubySdk::FinancialRequestModel.new(
  amount: null,
  card_acceptor: null,
  card_id: null,
  cash_back_amount: null,
  is_pre_auth: null,
  mid: null,
  pin: null,
  transaction_options: null
)