Class: Stripe::V2::Core::AccountEvaluationCreateParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::AccountEvaluationCreateParams
- Defined in:
- lib/stripe/params/v2/core/account_evaluation_create_params.rb
Defined Under Namespace
Classes: AccountData
Instance Attribute Summary collapse
-
#account ⇒ Object
The account ID to evaluate.
-
#account_data ⇒ Object
Account data for entity-less evaluation.
-
#signals ⇒ Object
List of signals to evaluate.
Instance Method Summary collapse
-
#initialize(account: nil, account_data: nil, signals: nil) ⇒ AccountEvaluationCreateParams
constructor
A new instance of AccountEvaluationCreateParams.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(account: nil, account_data: nil, signals: nil) ⇒ AccountEvaluationCreateParams
Returns a new instance of AccountEvaluationCreateParams.
65 66 67 68 69 |
# File 'lib/stripe/params/v2/core/account_evaluation_create_params.rb', line 65 def initialize(account: nil, account_data: nil, signals: nil) @account = account @account_data = account_data @signals = signals end |
Instance Attribute Details
#account ⇒ Object
The account ID to evaluate. Exactly one of account or account_data must be provided.
59 60 61 |
# File 'lib/stripe/params/v2/core/account_evaluation_create_params.rb', line 59 def account @account end |
#account_data ⇒ Object
Account data for entity-less evaluation. Exactly one of account or account_data must be provided.
61 62 63 |
# File 'lib/stripe/params/v2/core/account_evaluation_create_params.rb', line 61 def account_data @account_data end |
#signals ⇒ Object
List of signals to evaluate.
63 64 65 |
# File 'lib/stripe/params/v2/core/account_evaluation_create_params.rb', line 63 def signals @signals end |