Class: Increase::Models::CardPayment::Element::CardReversal
- Defined in:
- lib/increase/models/card_payment.rb
Defined Under Namespace
Classes: NetworkIdentifiers
Instance Attribute Summary collapse
-
#card_authorization_id ⇒ String
The identifier for the Card Authorization this reverses.
-
#currency ⇒ Symbol
The ISO 4217 code for the reversal's currency.
-
#id ⇒ String
The Card Reversal identifier.
-
#network ⇒ Symbol
The card network used to process this card authorization.
-
#network_identifiers ⇒ Increase::Models::CardPayment::Element::CardReversal::NetworkIdentifiers
Network-specific identifiers for a specific request or transaction.
-
#pending_transaction_id ⇒ String
The identifier of the Pending Transaction associated with this Card Reversal.
-
#reversal_amount ⇒ Integer
The amount of this reversal in the minor unit of the transaction's currency.
-
#type ⇒ Symbol
A constant representing the object's type.
-
#updated_authorization_amount ⇒ Integer
The amount left pending on the Card Authorization in the minor unit of the transaction's currency.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#card_authorization_id ⇒ String
The identifier for the Card Authorization this reverses.
1339 |
# File 'lib/increase/models/card_payment.rb', line 1339 required :card_authorization_id, String |
#currency ⇒ Symbol
The ISO 4217 code for the reversal's currency.
1344 |
# File 'lib/increase/models/card_payment.rb', line 1344 required :currency, Increase::Enum.new(:CAD, :CHF, :EUR, :GBP, :JPY, :USD) |
#id ⇒ String
The Card Reversal identifier.
1334 |
# File 'lib/increase/models/card_payment.rb', line 1334 required :id, String |
#network ⇒ Symbol
The card network used to process this card authorization.
1349 |
# File 'lib/increase/models/card_payment.rb', line 1349 required :network, Increase::Enum.new(:visa) |
#network_identifiers ⇒ Increase::Models::CardPayment::Element::CardReversal::NetworkIdentifiers
Network-specific identifiers for a specific request or transaction.
1354 1355 |
# File 'lib/increase/models/card_payment.rb', line 1354 required :network_identifiers, -> { Increase::Models::CardPayment::Element::CardReversal::NetworkIdentifiers } |
#pending_transaction_id ⇒ String
The identifier of the Pending Transaction associated with this Card Reversal.
1360 |
# File 'lib/increase/models/card_payment.rb', line 1360 required :pending_transaction_id, String |
#reversal_amount ⇒ Integer
The amount of this reversal in the minor unit of the transaction's currency. For dollars, for example, this is cents.
1365 |
# File 'lib/increase/models/card_payment.rb', line 1365 required :reversal_amount, Integer |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be card_reversal
.
1370 |
# File 'lib/increase/models/card_payment.rb', line 1370 required :type, Increase::Enum.new(:card_reversal) |
#updated_authorization_amount ⇒ Integer
The amount left pending on the Card Authorization in the minor unit of the transaction's currency. For dollars, for example, this is cents.
1375 |
# File 'lib/increase/models/card_payment.rb', line 1375 required :updated_authorization_amount, Integer |