Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

File metadata and controls

31 lines (22 loc) · 1.11 KB

EmployeeTableRow

A single row from the requested table. The returned fields depend on the table and the caller's field-level permissions.

Properties

Name Type Description Notes
id str The table row ID. [optional]
employee_id str The employee ID that owns this row. [optional]

Example

from bamboohr_sdk.models.employee_table_row import EmployeeTableRow

# TODO update the JSON string below
json = "{}"
# create an instance of EmployeeTableRow from a JSON string
employee_table_row_instance = EmployeeTableRow.from_json(json)
# print the JSON string representation of the object
print(EmployeeTableRow.to_json())

# convert the object into a dict
employee_table_row_dict = employee_table_row_instance.to_dict()
# create an instance of EmployeeTableRow from a dict
employee_table_row_from_dict = EmployeeTableRow.from_dict(employee_table_row_dict)

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