Class: Stripe::AccountSession::CreateParams::Components::FinancialAccountTransactions
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountSession::CreateParams::Components::FinancialAccountTransactions
- 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) ⇒ FinancialAccountTransactions
constructor
A new instance of FinancialAccountTransactions.
Methods inherited from RequestParams
Constructor Details
#initialize(enabled: nil, features: nil) ⇒ FinancialAccountTransactions
Returns a new instance of FinancialAccountTransactions.
413 414 415 416 |
# File 'lib/stripe/resources/account_session.rb', line 413 def initialize(enabled: nil, features: nil) @enabled = enabled @features = features end |
Instance Attribute Details
#enabled ⇒ Object
Whether the embedded component is enabled.
409 410 411 |
# File 'lib/stripe/resources/account_session.rb', line 409 def enabled @enabled end |
#features ⇒ Object
The list of features enabled in the embedded component.
411 412 413 |
# File 'lib/stripe/resources/account_session.rb', line 411 def features @features end |