Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 586 Bytes

EmployeeName.md

File metadata and controls

24 lines (18 loc) · 586 Bytes

Pinwheel::EmployeeName

Properties

Name Type Description Notes
first_name String The first name of the employee. [optional]
middle_name String The middle name of the employee. [optional]
last_name String The last name of the employee. [optional]
full_name String The full name of the employee.

Example

require 'pinwheel'

instance = Pinwheel::EmployeeName.new(
  first_name: null,
  middle_name: null,
  last_name: null,
  full_name: null
)