Class: Lithic::Models::ThreeDSAuthentication::App
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::ThreeDSAuthentication::App
- Defined in:
- lib/lithic/models/three_ds_authentication.rb
Overview
Instance Attribute Summary collapse
-
#device ⇒ String?
Device model: e.g.
-
#device_info ⇒ String?
Raw device information - base64-encoded JSON object.
-
#ip ⇒ String?
IP address of the device.
-
#latitude ⇒ Float?
Latitude coordinate of current device location.
-
#locale ⇒ String?
Device locale: e.g.
-
#longitude ⇒ Float?
Longitude coordinate of current device location.
-
#os ⇒ String?
Operating System: e.g.
-
#platform ⇒ String?
Device platform: Android, iOS, Windows, etc.
-
#screen_height ⇒ Integer?
Screen height in pixels.
-
#screen_width ⇒ Integer?
Screen width in pixels.
-
#time_zone ⇒ String?
Time zone offset in minutes between UTC and device local time.
Method Summary
Methods inherited from Internal::Type::BaseModel
#==, ==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, #initialize, 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
This class inherits a constructor from Lithic::Internal::Type::BaseModel
Instance Attribute Details
#device ⇒ String?
Device model: e.g. “Apple iPhone 16”.
825 |
# File 'lib/lithic/models/three_ds_authentication.rb', line 825 optional :device, String, nil?: true |
#device_info ⇒ String?
Raw device information - base64-encoded JSON object. Maps to EMV 3DS field ‘deviceInfo`.
832 |
# File 'lib/lithic/models/three_ds_authentication.rb', line 832 optional :device_info, String, nil?: true |
#ip ⇒ String?
IP address of the device.
838 |
# File 'lib/lithic/models/three_ds_authentication.rb', line 838 optional :ip, String |
#latitude ⇒ Float?
Latitude coordinate of current device location.
844 |
# File 'lib/lithic/models/three_ds_authentication.rb', line 844 optional :latitude, Float, nil?: true |
#locale ⇒ String?
Device locale: e.g. “en-US”.
850 |
# File 'lib/lithic/models/three_ds_authentication.rb', line 850 optional :locale, String, nil?: true |
#longitude ⇒ Float?
Longitude coordinate of current device location.
856 |
# File 'lib/lithic/models/three_ds_authentication.rb', line 856 optional :longitude, Float, nil?: true |
#os ⇒ String?
Operating System: e.g. “Android 12”, “iOS 17.1”.
862 |
# File 'lib/lithic/models/three_ds_authentication.rb', line 862 optional :os, String, nil?: true |
#platform ⇒ String?
Device platform: Android, iOS, Windows, etc.
868 |
# File 'lib/lithic/models/three_ds_authentication.rb', line 868 optional :platform, String, nil?: true |
#screen_height ⇒ Integer?
Screen height in pixels.
874 |
# File 'lib/lithic/models/three_ds_authentication.rb', line 874 optional :screen_height, Integer, nil?: true |
#screen_width ⇒ Integer?
Screen width in pixels.
880 |
# File 'lib/lithic/models/three_ds_authentication.rb', line 880 optional :screen_width, Integer, nil?: true |
#time_zone ⇒ String?
Time zone offset in minutes between UTC and device local time.
886 |
# File 'lib/lithic/models/three_ds_authentication.rb', line 886 optional :time_zone, String, nil?: true |