Class: Stripe::AccountCreateParams::Controller::Fees
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountCreateParams::Controller::Fees
- Defined in:
- lib/stripe/params/account_create_params.rb
Instance Attribute Summary collapse
-
#payer ⇒ Object
A value indicating the responsible payer of Stripe fees on this account.
Instance Method Summary collapse
-
#initialize(payer: nil) ⇒ Fees
constructor
A new instance of Fees.
Methods inherited from RequestParams
Constructor Details
#initialize(payer: nil) ⇒ Fees
Returns a new instance of Fees.
1305 1306 1307 |
# File 'lib/stripe/params/account_create_params.rb', line 1305 def initialize(payer: nil) @payer = payer end |
Instance Attribute Details
#payer ⇒ Object
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).
1303 1304 1305 |
# File 'lib/stripe/params/account_create_params.rb', line 1303 def payer @payer end |