Class: Stripe::AccountSessionCreateParams::Components::Recipients
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountSessionCreateParams::Components::Recipients
- 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
Attribute for param field features.
Instance Method Summary collapse
-
#initialize(enabled: nil, features: nil) ⇒ Recipients
constructor
A new instance of Recipients.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(enabled: nil, features: nil) ⇒ Recipients
Returns a new instance of Recipients.
666 667 668 669 |
# File 'lib/stripe/params/account_session_create_params.rb', line 666 def initialize(enabled: nil, features: nil) @enabled = enabled @features = features end |
Instance Attribute Details
#enabled ⇒ Object
Whether the embedded component is enabled.
662 663 664 |
# File 'lib/stripe/params/account_session_create_params.rb', line 662 def enabled @enabled end |
#features ⇒ Object
Attribute for param field features
664 665 666 |
# File 'lib/stripe/params/account_session_create_params.rb', line 664 def features @features end |