Class: Stripe::AccountSessionCreateParams::Components::Recipients::Features
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountSessionCreateParams::Components::Recipients::Features
- Defined in:
- lib/stripe/params/account_session_create_params.rb
Instance Attribute Summary collapse
-
#send_money ⇒ Object
Whether to allow sending money.
Instance Method Summary collapse
-
#initialize(send_money: nil) ⇒ Features
constructor
A new instance of Features.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(send_money: nil) ⇒ Features
Returns a new instance of Features.
641 642 643 |
# File 'lib/stripe/params/account_session_create_params.rb', line 641 def initialize(send_money: nil) @send_money = send_money end |
Instance Attribute Details
#send_money ⇒ Object
Whether to allow sending money.
639 640 641 |
# File 'lib/stripe/params/account_session_create_params.rb', line 639 def send_money @send_money end |