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. |
require 'pinwheel'
instance = Pinwheel::EmployeeName.new(
first_name: null,
middle_name: null,
last_name: null,
full_name: null
)