docs/EmployeeResponse.md in affixapi-1.1.60 vs docs/EmployeeResponse.md in affixapi-1.1.62
- old
+ new
@@ -18,11 +18,11 @@
| **tax_id** | **String** | | |
| **gender** | **String** | | |
| **ethnicity** | **String** | | |
| **marital_status** | **String** | `other` option can include co-habitating, civil partnership, separated, divorced, widowed, etc | |
| **date_of_birth** | **Date** | | |
-| **employment_status** | **String** | | |
+| **employment_status** | [**EmploymentStatusResponse**](EmploymentStatusResponse.md) | | |
| **employment_type** | **String** | | |
| **start_date** | **Date** | | |
| **remote_created_at** | **Date** | | [readonly] |
| **termination_date** | **Date** | | |
| **avatar** | **String** | | |
@@ -31,10 +31,12 @@
| **manager** | [**EmployeeResponseManager**](EmployeeResponseManager.md) | | |
| **bank_account** | [**CreateEmployeeRequestBankAccount**](CreateEmployeeRequestBankAccount.md) | | |
| **employments** | [**Array<EmploymentResponse>**](EmploymentResponse.md) | | |
| **custom_fields** | **Object** | | |
| **groups** | [**Array<GroupResponse>**](GroupResponse.md) | | |
+| **dependents** | [**Array<CreateEmployeeRequestDependents>**](CreateEmployeeRequestDependents.md) | | |
+| **emergency_contacts** | [**Array<CreateEmployeeRequestEmergencyContacts>**](CreateEmployeeRequestEmergencyContacts.md) | | |
## Example
```ruby
require 'openapi_client'
@@ -54,11 +56,11 @@
tax_id: 1234567890,
gender: male,
ethnicity: white,
marital_status: single,
date_of_birth: Sat Nov 10 00:00:00 UTC 1990,
- employment_status: active,
+ employment_status: null,
employment_type: full_time,
start_date: Sun Oct 11 00:00:00 UTC 2020,
remote_created_at: Sun Oct 11 00:00:00 UTC 2020,
termination_date: Tue Oct 12 00:00:00 UTC 2021,
avatar: http://alturl.com/h2h8m,
@@ -66,9 +68,11 @@
work_location: null,
manager: null,
bank_account: null,
employments: null,
custom_fields: {"t_shirt_size":"medium"},
- groups: [{"id":"4B9bKBpX5tnwjiG93TAqF7ci","remote_id":"df6c28e8","name":"backend","type":"team"},{"id":"132Xpnw2a38aaQG93TAqF7ci","remote_id":"355c65922637","name":"engineering","type":"department"}]
+ groups: [{"id":"4B9bKBpX5tnwjiG93TAqF7ci","remote_id":"df6c28e8","name":"backend","type":"team"},{"id":"132Xpnw2a38aaQG93TAqF7ci","remote_id":"355c65922637","name":"engineering","type":"department"}],
+ dependents: null,
+ emergency_contacts: null
)
```