Class: Stripe::AccountSession::CreateParams::Components::Balances
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountSession::CreateParams::Components::Balances
- 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) ⇒ Balances
constructor
A new instance of Balances.
Methods inherited from RequestParams
Constructor Details
#initialize(enabled: nil, features: nil) ⇒ Balances
Returns a new instance of Balances.
345 346 347 348 |
# File 'lib/stripe/resources/account_session.rb', line 345 def initialize(enabled: nil, features: nil) @enabled = enabled @features = features end |
Instance Attribute Details
#enabled ⇒ Object
Whether the embedded component is enabled.
341 342 343 |
# File 'lib/stripe/resources/account_session.rb', line 341 def enabled @enabled end |
#features ⇒ Object
The list of features enabled in the embedded component.
343 344 345 |
# File 'lib/stripe/resources/account_session.rb', line 343 def features @features end |