Class: Stripe::Account::CreateParams::RiskControls
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Account::CreateParams::RiskControls
- Defined in:
- lib/stripe/resources/account.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.
4728 4729 4730 4731 |
# File 'lib/stripe/resources/account.rb', line 4728 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).
4724 4725 4726 |
# File 'lib/stripe/resources/account.rb', line 4724 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).
4726 4727 4728 |
# File 'lib/stripe/resources/account.rb', line 4726 def payouts @payouts end |