Class: Stripe::AccountCreateParams::RiskControls
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountCreateParams::RiskControls
- Defined in:
- lib/stripe/params/account_create_params.rb
Defined Under Namespace
Instance Attribute Summary collapse
-
#charges ⇒ Object
Represents the risk control status of charges.
-
#payouts ⇒ Object
Represents the risk control status of payouts.
Instance Method Summary collapse
-
#initialize(charges: nil, payouts: nil) ⇒ RiskControls
constructor
A new instance of RiskControls.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(charges: nil, payouts: nil) ⇒ RiskControls
Returns a new instance of RiskControls.
2092 2093 2094 2095 |
# File 'lib/stripe/params/account_create_params.rb', line 2092 def initialize(charges: nil, payouts: nil) @charges = charges @payouts = payouts end |
Instance Attribute Details
#charges ⇒ Object
Represents the risk control status of charges. Please see [this page for more details](docs.stripe.com/connect/pausing-payments-or-payouts-on-connected-accounts).
2088 2089 2090 |
# File 'lib/stripe/params/account_create_params.rb', line 2088 def charges @charges end |
#payouts ⇒ Object
Represents the risk control status of payouts. Please see [this page for more details](docs.stripe.com/connect/pausing-payments-or-payouts-on-connected-accounts).
2090 2091 2092 |
# File 'lib/stripe/params/account_create_params.rb', line 2090 def payouts @payouts end |