Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 999 Bytes

GatewayPatch.md

File metadata and controls

24 lines (18 loc) · 999 Bytes

Synctera::GatewayPatch

Properties

Name Type Description Notes
custom_headers Hash<String, Array<String>> Custom http headers for the Auth request to Gateway URL [optional]
disabled Boolean Allows to disable/enable Gateway Config for the Fintech (Tenant) [optional]
max_wait_ms Integer Maximum amount of time in milliseconds that we will wait for the response from Gateway URL request [optional]
url String The URL address which will be used for the ACH in Auth Flow requests to get authorization from the fintech to process the transaction [optional]

Example

require 'synctera'

instance = Synctera::GatewayPatch.new(
  custom_headers: {&quot;Content-Type&quot;:[&quot;application/json&quot;,&quot;text/html&quot;],&quot;Host&quot;:[&quot;https://host.com&quot;]},
  disabled: null,
  max_wait_ms: null,
  url: https://fintech.com/ach/auth
)