Class: Stripe::AccountSessionCreateParams::Components::IssuingCard
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountSessionCreateParams::Components::IssuingCard
- 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) ⇒ IssuingCard
constructor
A new instance of IssuingCard.
Methods inherited from RequestParams
Constructor Details
#initialize(enabled: nil, features: nil) ⇒ IssuingCard
Returns a new instance of IssuingCard.
250 251 252 253 |
# File 'lib/stripe/params/account_session_create_params.rb', line 250 def initialize(enabled: nil, features: nil) @enabled = enabled @features = features end |
Instance Attribute Details
#enabled ⇒ Object
Whether the embedded component is enabled.
246 247 248 |
# File 'lib/stripe/params/account_session_create_params.rb', line 246 def enabled @enabled end |
#features ⇒ Object
The list of features enabled in the embedded component.
248 249 250 |
# File 'lib/stripe/params/account_session_create_params.rb', line 248 def features @features end |