Class: Stripe::V2::Signals::AccountEvaluationCreateParams::AccountActivityDetails::Data::RegistrationAttempt::ClientDetails::Data
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Signals::AccountEvaluationCreateParams::AccountActivityDetails::Data::RegistrationAttempt::ClientDetails::Data
- Defined in:
- lib/stripe/params/v2/signals/account_evaluation_create_params.rb
Instance Attribute Summary collapse
-
#ip ⇒ Object
The IP address associated with the activity.
-
#referrer ⇒ Object
The referrer associated with the activity.
-
#user_agent ⇒ Object
The user agent associated with the activity.
Instance Method Summary collapse
-
#initialize(ip: nil, referrer: nil, user_agent: nil) ⇒ Data
constructor
A new instance of Data.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(ip: nil, referrer: nil, user_agent: nil) ⇒ Data
Returns a new instance of Data.
54 55 56 57 58 |
# File 'lib/stripe/params/v2/signals/account_evaluation_create_params.rb', line 54 def initialize(ip: nil, referrer: nil, user_agent: nil) @ip = ip @referrer = referrer @user_agent = user_agent end |
Instance Attribute Details
#ip ⇒ Object
The IP address associated with the activity.
48 49 50 |
# File 'lib/stripe/params/v2/signals/account_evaluation_create_params.rb', line 48 def ip @ip end |
#referrer ⇒ Object
The referrer associated with the activity.
50 51 52 |
# File 'lib/stripe/params/v2/signals/account_evaluation_create_params.rb', line 50 def referrer @referrer end |
#user_agent ⇒ Object
The user agent associated with the activity.
52 53 54 |
# File 'lib/stripe/params/v2/signals/account_evaluation_create_params.rb', line 52 def user_agent @user_agent end |