Class: Stripe::AccountSessionCreateParams::Components::Payouts
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountSessionCreateParams::Components::Payouts
- Defined in:
- lib/stripe/params/account_session_create_params.rb
Defined Under Namespace
Classes: Features
Instance Attribute Summary collapse
-
#enabled ⇒ Object
Whether the embedded component is enabled.
-
#features ⇒ Object
The list of features enabled in the embedded component.
Instance Method Summary collapse
-
#initialize(enabled: nil, features: nil) ⇒ Payouts
constructor
A new instance of Payouts.
Methods inherited from RequestParams
Constructor Details
#initialize(enabled: nil, features: nil) ⇒ Payouts
Returns a new instance of Payouts.
460 461 462 463 |
# File 'lib/stripe/params/account_session_create_params.rb', line 460 def initialize(enabled: nil, features: nil) @enabled = enabled @features = features end |
Instance Attribute Details
#enabled ⇒ Object
Whether the embedded component is enabled.
456 457 458 |
# File 'lib/stripe/params/account_session_create_params.rb', line 456 def enabled @enabled end |
#features ⇒ Object
The list of features enabled in the embedded component.
458 459 460 |
# File 'lib/stripe/params/account_session_create_params.rb', line 458 def features @features end |