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.



1511
1512
1513
# File 'lib/stripe/params/account_create_params.rb', line 1511

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).



1509
1510
1511
# File 'lib/stripe/params/account_create_params.rb', line 1509

def payer
  @payer
end