Class: Stripe::AccountSession::CreateParams::Components::Payouts
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountSession::CreateParams::Components::Payouts
- Defined in:
- lib/stripe/resources/account_session.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.
617 618 619 620 |
# File 'lib/stripe/resources/account_session.rb', line 617 def initialize(enabled: nil, features: nil) @enabled = enabled @features = features end |
Instance Attribute Details
#enabled ⇒ Object
Whether the embedded component is enabled.
613 614 615 |
# File 'lib/stripe/resources/account_session.rb', line 613 def enabled @enabled end |
#features ⇒ Object
The list of features enabled in the embedded component.
615 616 617 |
# File 'lib/stripe/resources/account_session.rb', line 615 def features @features end |