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.



102
103
104
105
# File 'lib/stripe/params/balance_settings_update_params.rb', line 102

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

Instance Attribute Details

#expandObject

Specifies which fields in the response should be expanded.



98
99
100
# File 'lib/stripe/params/balance_settings_update_params.rb', line 98

def expand
  @expand
end

#paymentsObject

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



100
101
102
# File 'lib/stripe/params/balance_settings_update_params.rb', line 100

def payments
  @payments
end