SyncteraRubySdk::ClearingModel
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 |
|
[optional] |
| force_post |
Boolean |
|
[optional][default to false] |
| is_refund |
Boolean |
|
[optional][default to false] |
| mid |
String |
|
[optional] |
| network_fees |
Array<NetworkFeeModel> |
|
[optional] |
| original_transaction_id |
String |
When you simulated a clearing the synchronous response would have included a `transaction.token`. That value should be used here. |
|
Example
require 'synctera_ruby_sdk'
instance = SyncteraRubySdk::ClearingModel.new(
amount: null,
card_acceptor: null,
force_post: null,
is_refund: null,
mid: null,
network_fees: null,
original_transaction_id: null
)