Class: Stripe::AccountService::UpdateParams::RiskControls
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountService::UpdateParams::RiskControls
- Defined in:
- lib/stripe/services/account_service.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.
1879 1880 1881 1882 |
# File 'lib/stripe/services/account_service.rb', line 1879 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).
1875 1876 1877 |
# File 'lib/stripe/services/account_service.rb', line 1875 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).
1877 1878 1879 |
# File 'lib/stripe/services/account_service.rb', line 1877 def payouts @payouts end |