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

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

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

Returns a new instance of BalanceSettingsUpdateParams.



110
111
112
113
# File 'lib/stripe/params/balance_settings_update_params.rb', line 110

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

Instance Attribute Details

#expandObject

Specifies which fields in the response should be expanded.



106
107
108
# File 'lib/stripe/params/balance_settings_update_params.rb', line 106

def expand
  @expand
end

#paymentsObject

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



108
109
110
# File 'lib/stripe/params/balance_settings_update_params.rb', line 108

def payments
  @payments
end