Class: Stripe::AccountUpdateParams::RiskControls
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountUpdateParams::RiskControls
- Defined in:
- lib/stripe/params/account_update_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
Constructor Details
#initialize(charges: nil, payouts: nil) ⇒ RiskControls
Returns a new instance of RiskControls.
1982 1983 1984 1985 |
# File 'lib/stripe/params/account_update_params.rb', line 1982 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](stripe.com/docs/connect/pausing-payments-or-payouts-on-connected-accounts).
1978 1979 1980 |
# File 'lib/stripe/params/account_update_params.rb', line 1978 def charges @charges end |
#payouts ⇒ Object
Represents the risk control status of payouts. Please see [this page for more details](stripe.com/docs/connect/pausing-payments-or-payouts-on-connected-accounts).
1980 1981 1982 |
# File 'lib/stripe/params/account_update_params.rb', line 1980 def payouts @payouts end |