Class: Stripe::AccountSessionCreateParams::Components::NotificationBanner
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountSessionCreateParams::Components::NotificationBanner
- 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) ⇒ NotificationBanner
constructor
A new instance of NotificationBanner.
Methods inherited from RequestParams
Constructor Details
#initialize(enabled: nil, features: nil) ⇒ NotificationBanner
Returns a new instance of NotificationBanner.
311 312 313 314 |
# File 'lib/stripe/params/account_session_create_params.rb', line 311 def initialize(enabled: nil, features: nil) @enabled = enabled @features = features end |
Instance Attribute Details
#enabled ⇒ Object
Whether the embedded component is enabled.
307 308 309 |
# File 'lib/stripe/params/account_session_create_params.rb', line 307 def enabled @enabled end |
#features ⇒ Object
The list of features enabled in the embedded component.
309 310 311 |
# File 'lib/stripe/params/account_session_create_params.rb', line 309 def features @features end |