Class: Increase::Models::CardDetails
- Defined in:
- lib/increase/models/card_details.rb
Instance Attribute Summary collapse
-
#card_id ⇒ String
The identifier for the Card for which sensitive details have been returned.
-
#expiration_month ⇒ Integer
The month the card expires in M format (e.g., August is 8).
-
#expiration_year ⇒ Integer
The year the card expires in YYYY format (e.g., 2025).
-
#primary_account_number ⇒ String
The card number.
-
#type ⇒ Symbol
A constant representing the object's type.
-
#verification_code ⇒ String
The three-digit verification code for the card.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#card_id ⇒ String
The identifier for the Card for which sensitive details have been returned.
9 |
# File 'lib/increase/models/card_details.rb', line 9 required :card_id, String |
#expiration_month ⇒ Integer
The month the card expires in M format (e.g., August is 8).
14 |
# File 'lib/increase/models/card_details.rb', line 14 required :expiration_month, Integer |
#expiration_year ⇒ Integer
The year the card expires in YYYY format (e.g., 2025).
19 |
# File 'lib/increase/models/card_details.rb', line 19 required :expiration_year, Integer |
#primary_account_number ⇒ String
The card number.
24 |
# File 'lib/increase/models/card_details.rb', line 24 required :primary_account_number, String |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be card_details
.
29 |
# File 'lib/increase/models/card_details.rb', line 29 required :type, Increase::Enum.new(:card_details) |
#verification_code ⇒ String
The three-digit verification code for the card. It's also known as the Card Verification Code (CVC), the Card Verification Value (CVV), or the Card Identification (CID).
34 |
# File 'lib/increase/models/card_details.rb', line 34 required :verification_code, String |