Class: Stripe::Radar::AccountEvaluation::Event
- Inherits:
-
StripeObject
- Object
- StripeObject
- Stripe::Radar::AccountEvaluation::Event
- Defined in:
- lib/stripe/resources/radar/account_evaluation.rb
Defined Under Namespace
Classes: LoginFailed, LoginSucceeded, RegistrationFailed, RegistrationSucceeded
Constant Summary
Constants inherited from StripeObject
StripeObject::RESERVED_FIELD_NAMES
Instance Attribute Summary collapse
-
#login_failed ⇒ Object
readonly
Data about a failed login event.
-
#login_succeeded ⇒ Object
readonly
Data about a succeeded login event.
-
#occurred_at ⇒ Object
readonly
Time at which the event occurred.
-
#registration_failed ⇒ Object
readonly
Data about a failed registration event.
-
#registration_succeeded ⇒ Object
readonly
Data about a succeeded registration event.
-
#type ⇒ Object
readonly
The type of event that occurred.
Attributes inherited from StripeObject
Class Method Summary collapse
Methods inherited from StripeObject
#==, #[], #[]=, #_get_inner_class_type, additive_object_param, additive_object_param?, #as_json, construct_from, #deleted?, #dirty!, #each, #eql?, field_encodings, #hash, #initialize, #inspect, #keys, #marshal_dump, #marshal_load, protected_fields, #serialize_params, #to_hash, #to_json, #to_s, #update_attributes, #values
Constructor Details
This class inherits a constructor from Stripe::StripeObject
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Stripe::StripeObject
Instance Attribute Details
#login_failed ⇒ Object (readonly)
Data about a failed login event.
69 70 71 |
# File 'lib/stripe/resources/radar/account_evaluation.rb', line 69 def login_failed @login_failed end |
#login_succeeded ⇒ Object (readonly)
Data about a succeeded login event.
71 72 73 |
# File 'lib/stripe/resources/radar/account_evaluation.rb', line 71 def login_succeeded @login_succeeded end |
#occurred_at ⇒ Object (readonly)
Time at which the event occurred. Measured in seconds since the Unix epoch.
73 74 75 |
# File 'lib/stripe/resources/radar/account_evaluation.rb', line 73 def occurred_at @occurred_at end |
#registration_failed ⇒ Object (readonly)
Data about a failed registration event.
75 76 77 |
# File 'lib/stripe/resources/radar/account_evaluation.rb', line 75 def registration_failed @registration_failed end |
#registration_succeeded ⇒ Object (readonly)
Data about a succeeded registration event.
77 78 79 |
# File 'lib/stripe/resources/radar/account_evaluation.rb', line 77 def registration_succeeded @registration_succeeded end |
#type ⇒ Object (readonly)
The type of event that occurred.
79 80 81 |
# File 'lib/stripe/resources/radar/account_evaluation.rb', line 79 def type @type end |
Class Method Details
.field_remappings ⇒ Object
90 91 92 |
# File 'lib/stripe/resources/radar/account_evaluation.rb', line 90 def self.field_remappings @field_remappings = {} end |
.inner_class_types ⇒ Object
81 82 83 84 85 86 87 88 |
# File 'lib/stripe/resources/radar/account_evaluation.rb', line 81 def self.inner_class_types @inner_class_types = { login_failed: LoginFailed, login_succeeded: LoginSucceeded, registration_failed: RegistrationFailed, registration_succeeded: RegistrationSucceeded, } end |