Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 838 Bytes

File metadata and controls

28 lines (19 loc) · 838 Bytes

EmployeeValue

Properties

Name Type Description Notes

Example

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)

[Back to Model list] [Back to API list] [Back to README]