Class: Stripe::AccountSessionCreateParams::Components::Payments
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountSessionCreateParams::Components::Payments
- 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) ⇒ Payments
constructor
A new instance of Payments.
Methods inherited from RequestParams
Constructor Details
#initialize(enabled: nil, features: nil) ⇒ Payments
409 410 411 412 |
# File 'lib/stripe/params/account_session_create_params.rb', line 409 def initialize(enabled: nil, features: nil) @enabled = enabled @features = features end |
Instance Attribute Details
#enabled ⇒ Object
Whether the embedded component is enabled.
405 406 407 |
# File 'lib/stripe/params/account_session_create_params.rb', line 405 def enabled @enabled end |
#features ⇒ Object
The list of features enabled in the embedded component.
407 408 409 |
# File 'lib/stripe/params/account_session_create_params.rb', line 407 def features @features end |