| Name | Type | Description | Notes |
|---|
from bamboohr_sdk.models.employee_value import EmployeeValue
# TODO update the JSON string below
json = "{}"
# create an instance of EmployeeValue from a JSON string
employee_value_instance = EmployeeValue.from_json(json)
# print the JSON string representation of the object
print(EmployeeValue.to_json())
# convert the object into a dict
employee_value_dict = employee_value_instance.to_dict()
# create an instance of EmployeeValue from a dict
employee_value_from_dict = EmployeeValue.from_dict(employee_value_dict)