Class: Kount::Persona
- Inherits:
-
Object
- Object
- Kount::Persona
- Defined in:
- lib/kount/response.rb
Instance Attribute Summary collapse
-
#unique_cards ⇒ Object
Returns the value of attribute unique_cards.
-
#unique_devices ⇒ Object
Returns the value of attribute unique_devices.
-
#unique_emails ⇒ Object
Returns the value of attribute unique_emails.
Instance Method Summary collapse
-
#initialize(attrs = {}) ⇒ Persona
constructor
A new instance of Persona.
Constructor Details
#initialize(attrs = {}) ⇒ Persona
Returns a new instance of Persona.
57 58 59 60 61 |
# File 'lib/kount/response.rb', line 57 def initialize(attrs = {}) @unique_cards = attrs["unique_cards"] @unique_devices = attrs["unique_devices"] @unique_emails = attrs["unique_emails"] end |
Instance Attribute Details
#unique_cards ⇒ Object
Returns the value of attribute unique_cards.
55 56 57 |
# File 'lib/kount/response.rb', line 55 def unique_cards @unique_cards end |
#unique_devices ⇒ Object
Returns the value of attribute unique_devices.
55 56 57 |
# File 'lib/kount/response.rb', line 55 def unique_devices @unique_devices end |
#unique_emails ⇒ Object
Returns the value of attribute unique_emails.
55 56 57 |
# File 'lib/kount/response.rb', line 55 def unique_emails @unique_emails end |