Class: Stripe::Treasury::FinancialAccountUpdateParams::PlatformRestrictions

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/treasury/financial_account_update_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

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_flowsObject

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_flowsObject

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