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.



70
71
72
73
# File 'lib/stripe/params/balance_settings_update_params.rb', line 70

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

Instance Attribute Details

#expandObject

Specifies which fields in the response should be expanded.



66
67
68
# File 'lib/stripe/params/balance_settings_update_params.rb', line 66

def expand
  @expand
end

#paymentsObject

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



68
69
70
# File 'lib/stripe/params/balance_settings_update_params.rb', line 68

def payments
  @payments
end