Class: Stripe::BalanceSettings::UpdateParams

Inherits:
RequestParams show all
Defined in:
lib/stripe/resources/balance_settings.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) ⇒ UpdateParams

Returns a new instance of UpdateParams.



134
135
136
137
# File 'lib/stripe/resources/balance_settings.rb', line 134

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

Instance Attribute Details

#expandObject

Specifies which fields in the response should be expanded.



130
131
132
# File 'lib/stripe/resources/balance_settings.rb', line 130

def expand
  @expand
end

#paymentsObject

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



132
133
134
# File 'lib/stripe/resources/balance_settings.rb', line 132

def payments
  @payments
end