Class: Increase::Models::CardPayment::Element::CardIncrement
- Defined in:
- lib/increase/models/card_payment.rb
Defined Under Namespace
Classes: NetworkIdentifiers
Instance Attribute Summary collapse
-
#actioner ⇒ Symbol
Whether this authorization was approved by Increase, the card network through stand-in processing, or the user through a real-time decision.
-
#amount ⇒ Integer
The amount of this increment in the minor unit of the transaction's currency.
-
#card_authorization_id ⇒ String
The identifier for the Card Authorization this increments.
-
#currency ⇒ Symbol
The ISO 4217 code for the increment's currency.
-
#id ⇒ String
The Card Increment identifier.
-
#network ⇒ Symbol
The card network used to process this card authorization.
-
#network_identifiers ⇒ Increase::Models::CardPayment::Element::CardIncrement::NetworkIdentifiers
Network-specific identifiers for a specific request or transaction.
-
#network_risk_score ⇒ Integer
The risk score generated by the card network.
-
#pending_transaction_id ⇒ String
The identifier of the Pending Transaction associated with this Card Increment.
-
#real_time_decision_id ⇒ String
The identifier of the Real-Time Decision sent to approve or decline this incremental authorization.
-
#type ⇒ Symbol
A constant representing the object's type.
-
#updated_authorization_amount ⇒ Integer
The updated authorization amount after this increment, in the minor unit of the transaction's currency.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#actioner ⇒ Symbol
Whether this authorization was approved by Increase, the card network through stand-in processing, or the user through a real-time decision.
749 |
# File 'lib/increase/models/card_payment.rb', line 749 required :actioner, Increase::Enum.new(:user, :increase, :network) |
#amount ⇒ Integer
The amount of this increment in the minor unit of the transaction's currency. For dollars, for example, this is cents.
754 |
# File 'lib/increase/models/card_payment.rb', line 754 required :amount, Integer |
#card_authorization_id ⇒ String
The identifier for the Card Authorization this increments.
759 |
# File 'lib/increase/models/card_payment.rb', line 759 required :card_authorization_id, String |
#currency ⇒ Symbol
The ISO 4217 code for the increment's currency.
764 |
# File 'lib/increase/models/card_payment.rb', line 764 required :currency, Increase::Enum.new(:CAD, :CHF, :EUR, :GBP, :JPY, :USD) |
#id ⇒ String
The Card Increment identifier.
744 |
# File 'lib/increase/models/card_payment.rb', line 744 required :id, String |
#network ⇒ Symbol
The card network used to process this card authorization.
769 |
# File 'lib/increase/models/card_payment.rb', line 769 required :network, Increase::Enum.new(:visa) |
#network_identifiers ⇒ Increase::Models::CardPayment::Element::CardIncrement::NetworkIdentifiers
Network-specific identifiers for a specific request or transaction.
774 775 |
# File 'lib/increase/models/card_payment.rb', line 774 required :network_identifiers, -> { Increase::Models::CardPayment::Element::CardIncrement::NetworkIdentifiers } |
#network_risk_score ⇒ Integer
The risk score generated by the card network. For Visa this is the Visa Advanced Authorization risk score, from 0 to 99, where 99 is the riskiest.
780 |
# File 'lib/increase/models/card_payment.rb', line 780 required :network_risk_score, Integer |
#pending_transaction_id ⇒ String
The identifier of the Pending Transaction associated with this Card Increment.
785 |
# File 'lib/increase/models/card_payment.rb', line 785 required :pending_transaction_id, String |
#real_time_decision_id ⇒ String
The identifier of the Real-Time Decision sent to approve or decline this incremental authorization.
790 |
# File 'lib/increase/models/card_payment.rb', line 790 required :real_time_decision_id, String |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be card_increment
.
795 |
# File 'lib/increase/models/card_payment.rb', line 795 required :type, Increase::Enum.new(:card_increment) |
#updated_authorization_amount ⇒ Integer
The updated authorization amount after this increment, in the minor unit of the transaction's currency. For dollars, for example, this is cents.
800 |
# File 'lib/increase/models/card_payment.rb', line 800 required :updated_authorization_amount, Integer |