Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 945 Bytes

IncomeResponseObj.md

File metadata and controls

28 lines (22 loc) · 945 Bytes

Pinwheel::IncomeResponseObj

Properties

Name Type Description Notes
pay_frequency String [optional]
compensation_unit String
compensation_amount Integer The amount per compensation unit, in cents.
currency String
annual_incomes Array<AnnualIncomeResponseObj> Annualized pay details for the user. Starting with the current year and going back at most 2 years.
paystubs Array<PaystubWithEarningsResponseObj> Up to 2 most recent paystubs for the employee's income.

Example

require 'pinwheel'

instance = Pinwheel::IncomeResponseObj.new(
  pay_frequency: null,
  compensation_unit: null,
  compensation_amount: null,
  currency: null,
  annual_incomes: null,
  paystubs: null
)