Class: Stripe::AccountSessionCreateParams::Components::TaxRegistrations
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountSessionCreateParams::Components::TaxRegistrations
- 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
An empty list, because this embedded component has no features.
Instance Method Summary collapse
-
#initialize(enabled: nil, features: nil) ⇒ TaxRegistrations
constructor
A new instance of TaxRegistrations.
Methods inherited from RequestParams
Constructor Details
#initialize(enabled: nil, features: nil) ⇒ TaxRegistrations
Returns a new instance of TaxRegistrations.
486 487 488 489 |
# File 'lib/stripe/params/account_session_create_params.rb', line 486 def initialize(enabled: nil, features: nil) @enabled = enabled @features = features end |
Instance Attribute Details
#enabled ⇒ Object
Whether the embedded component is enabled.
482 483 484 |
# File 'lib/stripe/params/account_session_create_params.rb', line 482 def enabled @enabled end |
#features ⇒ Object
An empty list, because this embedded component has no features.
484 485 486 |
# File 'lib/stripe/params/account_session_create_params.rb', line 484 def features @features end |