| Name |
Type |
Description |
Notes |
| employee_id |
str |
The ID of the employee this dependent belongs to. Required. |
|
| first_name |
str |
The dependent's first name. |
[optional] |
| middle_name |
str |
The dependent's middle name. |
[optional] |
| last_name |
str |
The dependent's last name. |
[optional] |
| relationship |
str |
The dependent's relationship to the employee (e.g. "spouse", "child", "domestic_partner"). |
[optional] |
| gender |
str |
The dependent's gender. |
[optional] |
| ssn |
str |
The dependent's Social Security Number, provided as plain text. Stored encrypted. Returned as a masked value (e.g. "xxx-xx-1234") on read. |
[optional] |
| sin |
str |
The dependent's Social Insurance Number (Canadian equivalent of SSN), provided as plain text. Stored encrypted. Returned as a masked value on read. |
[optional] |
| date_of_birth |
date |
The dependent's date of birth in YYYY-MM-DD format. |
[optional] |
| address_line1 |
str |
The first line of the dependent's address. |
[optional] |
| address_line2 |
str |
The second line of the dependent's address. |
[optional] |
| city |
str |
The dependent's city. |
[optional] |
| state |
str |
The dependent's state, provided as a state code (e.g. "UT"). Returned as a full state name on read. |
[optional] |
| zip_code |
str |
The dependent's ZIP or postal code. |
[optional] |
| home_phone |
str |
The dependent's home phone number. |
[optional] |
| country |
str |
The dependent's country, provided as an ISO 3166-1 alpha-2 country code (e.g. "US"). Returned as a full country name on read. |
[optional] |
| is_us_citizen |
str |
Whether the dependent is a US citizen. Accepted values: "yes" or "no". |
[optional] |
| is_student |
str |
Whether the dependent is currently a student. Accepted values: "yes" or "no". |
[optional] |
from bamboohr_sdk.models.employee_dependent import EmployeeDependent
# TODO update the JSON string below
json = "{}"
# create an instance of EmployeeDependent from a JSON string
employee_dependent_instance = EmployeeDependent.from_json(json)
# print the JSON string representation of the object
print(EmployeeDependent.to_json())
# convert the object into a dict
employee_dependent_dict = employee_dependent_instance.to_dict()
# create an instance of EmployeeDependent from a dict
employee_dependent_from_dict = EmployeeDependent.from_dict(employee_dependent_dict)
[Back to Model list] [Back to API list] [Back to README]