Class: Lithic::Models::AsaRequestWebhookEvent::Pos::EntryMode
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::AsaRequestWebhookEvent::Pos::EntryMode
- Defined in:
- lib/lithic/models/asa_request_webhook_event.rb
Overview
Defined Under Namespace
Modules: Card, Cardholder, Pan
Instance Attribute Summary collapse
-
#card ⇒ Symbol, ...
Card Presence Indicator.
-
#cardholder ⇒ Symbol, ...
Cardholder Presence Indicator.
-
#pan ⇒ Symbol, ...
Method of entry for the PAN.
-
#pin_entered ⇒ Boolean?
Indicates whether the cardholder entered the PIN.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(card: nil, cardholder: nil, pan: nil, pin_entered: nil) ⇒ Object
constructor
POS > Entry Mode object in ASA.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(card: nil, cardholder: nil, pan: nil, pin_entered: nil) ⇒ Object
POS > Entry Mode object in ASA
|
|
# File 'lib/lithic/models/asa_request_webhook_event.rb', line 795
|
Instance Attribute Details
#card ⇒ Symbol, ...
Card Presence Indicator
775 |
# File 'lib/lithic/models/asa_request_webhook_event.rb', line 775 optional :card, enum: -> { Lithic::AsaRequestWebhookEvent::Pos::EntryMode::Card } |
#cardholder ⇒ Symbol, ...
Cardholder Presence Indicator
781 |
# File 'lib/lithic/models/asa_request_webhook_event.rb', line 781 optional :cardholder, enum: -> { Lithic::AsaRequestWebhookEvent::Pos::EntryMode::Cardholder } |
#pan ⇒ Symbol, ...
Method of entry for the PAN
787 |
# File 'lib/lithic/models/asa_request_webhook_event.rb', line 787 optional :pan, enum: -> { Lithic::AsaRequestWebhookEvent::Pos::EntryMode::Pan } |
#pin_entered ⇒ Boolean?
Indicates whether the cardholder entered the PIN. True if the PIN was entered.
793 |
# File 'lib/lithic/models/asa_request_webhook_event.rb', line 793 optional :pin_entered, Lithic::Internal::Type::Boolean |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/lithic/models/asa_request_webhook_event.rb', line 816
|