Class: Stripe::AccountSessionCreateParams::Components::PaymentDisputes
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountSessionCreateParams::Components::PaymentDisputes
- 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) ⇒ PaymentDisputes
constructor
A new instance of PaymentDisputes.
Methods inherited from RequestParams
Constructor Details
#initialize(enabled: nil, features: nil) ⇒ PaymentDisputes
Returns a new instance of PaymentDisputes.
375 376 377 378 |
# File 'lib/stripe/params/account_session_create_params.rb', line 375 def initialize(enabled: nil, features: nil) @enabled = enabled @features = features end |
Instance Attribute Details
#enabled ⇒ Object
Whether the embedded component is enabled.
371 372 373 |
# File 'lib/stripe/params/account_session_create_params.rb', line 371 def enabled @enabled end |
#features ⇒ Object
The list of features enabled in the embedded component.
373 374 375 |
# File 'lib/stripe/params/account_session_create_params.rb', line 373 def features @features end |