Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 871 Bytes

EmployeeResponseObj.md

File metadata and controls

26 lines (20 loc) · 871 Bytes

Pinwheel::EmployeeResponseObj

Properties

Name Type Description Notes
name EmployeeName The name of the employee.
date_of_birth Date The date the employee was born. [optional]
last_four_ssn String The last four digits of the employee's social security number (SSN). [optional]
address AddressGetResponseItem The address of the employee. [optional]
phone_numbers Array<PhoneNumberGetResponseItem> The phone numbers of the employee. [optional]

Example

require 'pinwheel'

instance = Pinwheel::EmployeeResponseObj.new(
  name: null,
  date_of_birth: null,
  last_four_ssn: null,
  address: null,
  phone_numbers: null
)