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.
650 651 652 653 |
# File 'lib/stripe/params/account_session_create_params.rb', line 650 def initialize(enabled: nil, features: nil) @enabled = enabled @features = features end |
Instance Attribute Details
#enabled ⇒ Object
Whether the embedded component is enabled.
646 647 648 |
# File 'lib/stripe/params/account_session_create_params.rb', line 646 def enabled @enabled end |
#features ⇒ Object
Attribute for param field features
648 649 650 |
# File 'lib/stripe/params/account_session_create_params.rb', line 648 def features @features end |