Class: Stripe::AccountCreateParams::Controller::Fees

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/account_create_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(payer: nil) ⇒ Fees

Returns a new instance of Fees.



1286
1287
1288
# File 'lib/stripe/params/account_create_params.rb', line 1286

def initialize(payer: nil)
  @payer = payer
end

Instance Attribute Details

#payerObject

A value indicating the responsible payer of Stripe fees on this account. Defaults to ‘account`. Learn more about [fee behavior on connected accounts](docs.stripe.com/connect/direct-charges-fee-payer-behavior).



1284
1285
1286
# File 'lib/stripe/params/account_create_params.rb', line 1284

def payer
  @payer
end