Class: Increase::Models::CardPayment::Element::CardAuthorizationExpiration
- Inherits:
-
BaseModel
- Object
- BaseModel
- Increase::Models::CardPayment::Element::CardAuthorizationExpiration
- Defined in:
- lib/increase/models/card_payment.rb
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.
-
#expired_amount ⇒ Integer
The amount of this authorization expiration in the minor unit of the transaction's currency.
-
#id ⇒ String
The Card Authorization Expiration identifier.
-
#network ⇒ Symbol
The card network used to process this card authorization.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#card_authorization_id ⇒ String
The identifier for the Card Authorization this reverses.
390 |
# File 'lib/increase/models/card_payment.rb', line 390 required :card_authorization_id, String |
#currency ⇒ Symbol
The ISO 4217 code for the reversal's currency.
395 |
# File 'lib/increase/models/card_payment.rb', line 395 required :currency, Increase::Enum.new(:CAD, :CHF, :EUR, :GBP, :JPY, :USD) |
#expired_amount ⇒ Integer
The amount of this authorization expiration in the minor unit of the transaction's currency. For dollars, for example, this is cents.
400 |
# File 'lib/increase/models/card_payment.rb', line 400 required :expired_amount, Integer |
#id ⇒ String
The Card Authorization Expiration identifier.
385 |
# File 'lib/increase/models/card_payment.rb', line 385 required :id, String |
#network ⇒ Symbol
The card network used to process this card authorization.
405 |
# File 'lib/increase/models/card_payment.rb', line 405 required :network, Increase::Enum.new(:visa) |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be card_authorization_expiration
.
410 |
# File 'lib/increase/models/card_payment.rb', line 410 required :type, Increase::Enum.new(:card_authorization_expiration) |