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
Constructor Details
#initialize(send_money: nil) ⇒ Features
Returns a new instance of Features.
648 649 650 |
# File 'lib/stripe/params/account_session_create_params.rb', line 648 def initialize(send_money: nil) @send_money = send_money end |
Instance Attribute Details
#send_money ⇒ Object
Whether to allow sending money.
646 647 648 |
# File 'lib/stripe/params/account_session_create_params.rb', line 646 def send_money @send_money end |