Skip to content

Latest commit

 

History

History
42 lines (36 loc) · 1.69 KB

PlatformObjResponse.md

File metadata and controls

42 lines (36 loc) · 1.69 KB

Pinwheel::PlatformObjResponse

Properties

Name Type Description Notes
id String UUID of the platform.
name String Name of platform, e.g., ADP Portal, Gusto, Paylocity.
type String
fractional_amount_supported Boolean Whether or not the platform accepts decimal values for `direct_deposit_switch`.
min_amount Float Minimum amount, if any, platform accepts for `direct_deposit_switch`. [optional]
max_amount Float Maximum amount, if any, platform accepts for `direct_deposit_switch`. [optional]
last_updated Time ISO 8601 timestamp of the last update to this object.
logo_url String The URL of the platform logo. [optional]
percentage_supported Boolean Whether a direct deposit job supports percentage switching.
min_percentage Integer Minimum percentage allowed for `direct_deposit_switch`.
max_percentage Integer Maximum percentage allowed for `direct_deposit_switch`.
supported_jobs Array<String> Array of supported jobs.
amount_supported Boolean Whether a direct deposit job supports specific amount.

Example

require 'pinwheel'

instance = Pinwheel::PlatformObjResponse.new(
  id: null,
  name: null,
  type: null,
  fractional_amount_supported: null,
  min_amount: null,
  max_amount: null,
  last_updated: null,
  logo_url: null,
  percentage_supported: null,
  min_percentage: null,
  max_percentage: null,
  supported_jobs: null,
  amount_supported: null
)