Class: Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::Visa
- Inherits:
-
BaseModel
- Object
- BaseModel
- Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::Visa
- Defined in:
- lib/increase/models/card_payment.rb
Instance Attribute Summary collapse
-
#electronic_commerce_indicator ⇒ Symbol
For electronic commerce transactions, this identifies the level of security used in obtaining the customer's payment credential.
-
#point_of_service_entry_mode ⇒ Symbol
The method used to enter the cardholder's primary account number and card expiration date.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#electronic_commerce_indicator ⇒ Symbol
For electronic commerce transactions, this identifies the level of security used in obtaining the customer's payment credential. For mail or telephone order transactions, identifies the type of mail or telephone order.
2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 |
# File 'lib/increase/models/card_payment.rb', line 2027 required :electronic_commerce_indicator, Increase::Enum.new( :mail_phone_order, :recurring, :installment, :unknown_mail_phone_order, :secure_electronic_commerce, :non_authenticated_security_transaction_at_3ds_capable_merchant, :non_authenticated_security_transaction, :non_secure_transaction ) |
#point_of_service_entry_mode ⇒ Symbol
The method used to enter the cardholder's primary account number and card expiration date.
2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 |
# File 'lib/increase/models/card_payment.rb', line 2042 required :point_of_service_entry_mode, Increase::Enum.new( :unknown, :manual, :magnetic_stripe_no_cvv, :optical_code, :integrated_circuit_card, :contactless, :credential_on_file, :magnetic_stripe, :contactless_magnetic_stripe, :integrated_circuit_card_no_cvv ) |