Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 707 Bytes

PullDetails.md

File metadata and controls

26 lines (20 loc) · 707 Bytes

Synctera::PullDetails

Properties

Name Type Description Notes
country String ISO-3166-1 Alpha-2 country code [optional]
currency String ISO 4217 Alpha-3 currency code [optional]
network String Payment network [optional]
product_type ExternalCardProductType [optional]
regulated Boolean Exemption status from debit card interchange fee standards [optional]

Example

require 'synctera'

instance = Synctera::PullDetails.new(
  country: US,
  currency: USD,
  network: null,
  product_type: null,
  regulated: null
)