Class: Stripe::V2::Core::AccountEvaluationCreateParams

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/core/account_evaluation_create_params.rb

Defined Under Namespace

Classes: AccountData

Instance Attribute Summary collapse

Instance Method Summary collapse

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_data = 
  @signals = signals
end

Instance Attribute Details

#accountObject

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
end

#account_dataObject

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
end

#signalsObject

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