Class: Stripe::BalanceSettingsUpdateParams

Inherits:
RequestParams show all
Defined in:
lib/stripe/params/balance_settings_update_params.rb

Defined Under Namespace

Classes: Payments

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(expand: nil, payments: nil) ⇒ BalanceSettingsUpdateParams

Returns a new instance of BalanceSettingsUpdateParams.



62
63
64
65
# File 'lib/stripe/params/balance_settings_update_params.rb', line 62

def initialize(expand: nil, payments: nil)
  @expand = expand
  @payments = payments
end

Instance Attribute Details

#expandObject

Specifies which fields in the response should be expanded.



58
59
60
# File 'lib/stripe/params/balance_settings_update_params.rb', line 58

def expand
  @expand
end

#paymentsObject

Settings that apply to the [Payments Balance](docs.stripe.com/api/balance).



60
61
62
# File 'lib/stripe/params/balance_settings_update_params.rb', line 60

def payments
  @payments
end