Class: Increase::Models::CardPayment::Element::CardFuelConfirmation
- Inherits:
-
BaseModel
- Object
- BaseModel
- Increase::Models::CardPayment::Element::CardFuelConfirmation
- 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 updates.
-
#currency ⇒ Symbol
The ISO 4217 code for the increment's currency.
-
#id ⇒ String
The Card Fuel Confirmation identifier.
-
#network ⇒ Symbol
The card network used to process this card authorization.
-
#network_identifiers ⇒ Increase::Models::CardPayment::Element::CardFuelConfirmation::NetworkIdentifiers
Network-specific identifiers for a specific request or transaction.
-
#pending_transaction_id ⇒ String
The identifier of the Pending Transaction associated with this Card Fuel Confirmation.
-
#type ⇒ Symbol
A constant representing the object's type.
-
#updated_authorization_amount ⇒ Integer
The updated authorization amount after this fuel confirmation, 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 updates.
689 |
# File 'lib/increase/models/card_payment.rb', line 689 required :card_authorization_id, String |
#currency ⇒ Symbol
The ISO 4217 code for the increment's currency.
694 |
# File 'lib/increase/models/card_payment.rb', line 694 required :currency, Increase::Enum.new(:CAD, :CHF, :EUR, :GBP, :JPY, :USD) |
#id ⇒ String
The Card Fuel Confirmation identifier.
684 |
# File 'lib/increase/models/card_payment.rb', line 684 required :id, String |
#network ⇒ Symbol
The card network used to process this card authorization.
699 |
# File 'lib/increase/models/card_payment.rb', line 699 required :network, Increase::Enum.new(:visa) |
#network_identifiers ⇒ Increase::Models::CardPayment::Element::CardFuelConfirmation::NetworkIdentifiers
Network-specific identifiers for a specific request or transaction.
704 705 |
# File 'lib/increase/models/card_payment.rb', line 704 required :network_identifiers, -> { Increase::Models::CardPayment::Element::CardFuelConfirmation::NetworkIdentifiers } |
#pending_transaction_id ⇒ String
The identifier of the Pending Transaction associated with this Card Fuel Confirmation.
710 |
# File 'lib/increase/models/card_payment.rb', line 710 required :pending_transaction_id, String |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be card_fuel_confirmation
.
715 |
# File 'lib/increase/models/card_payment.rb', line 715 required :type, Increase::Enum.new(:card_fuel_confirmation) |
#updated_authorization_amount ⇒ Integer
The updated authorization amount after this fuel confirmation, in the minor unit of the transaction's currency. For dollars, for example, this is cents.
720 |
# File 'lib/increase/models/card_payment.rb', line 720 required :updated_authorization_amount, Integer |