Class: Stripe::Treasury::FinancialAccountUpdateParams::PlatformRestrictions
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Treasury::FinancialAccountUpdateParams::PlatformRestrictions
- Defined in:
- lib/stripe/params/treasury/financial_account_update_params.rb
Instance Attribute Summary collapse
-
#inbound_flows ⇒ Object
Restricts all inbound money movement.
-
#outbound_flows ⇒ Object
Restricts all outbound money movement.
Instance Method Summary collapse
-
#initialize(inbound_flows: nil, outbound_flows: nil) ⇒ PlatformRestrictions
constructor
A new instance of PlatformRestrictions.
Methods inherited from RequestParams
Constructor Details
#initialize(inbound_flows: nil, outbound_flows: nil) ⇒ PlatformRestrictions
Returns a new instance of PlatformRestrictions.
181 182 183 184 |
# File 'lib/stripe/params/treasury/financial_account_update_params.rb', line 181 def initialize(inbound_flows: nil, outbound_flows: nil) @inbound_flows = inbound_flows @outbound_flows = outbound_flows end |
Instance Attribute Details
#inbound_flows ⇒ Object
Restricts all inbound money movement.
177 178 179 |
# File 'lib/stripe/params/treasury/financial_account_update_params.rb', line 177 def inbound_flows @inbound_flows end |
#outbound_flows ⇒ Object
Restricts all outbound money movement.
179 180 181 |
# File 'lib/stripe/params/treasury/financial_account_update_params.rb', line 179 def outbound_flows @outbound_flows end |