Class: Stripe::Treasury::FinancialAccount::CreateParams::PlatformRestrictions
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Treasury::FinancialAccount::CreateParams::PlatformRestrictions
- Defined in:
- lib/stripe/resources/treasury/financial_account.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.
271 272 273 274 |
# File 'lib/stripe/resources/treasury/financial_account.rb', line 271 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.
267 268 269 |
# File 'lib/stripe/resources/treasury/financial_account.rb', line 267 def inbound_flows @inbound_flows end |
#outbound_flows ⇒ Object
Restricts all outbound money movement.
269 270 271 |
# File 'lib/stripe/resources/treasury/financial_account.rb', line 269 def outbound_flows @outbound_flows end |