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

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(payer: nil) ⇒ Fees

Returns a new instance of Fees.



1554
1555
1556
# File 'lib/stripe/params/account_create_params.rb', line 1554

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



1552
1553
1554
# File 'lib/stripe/params/account_create_params.rb', line 1552

def payer
  @payer
end