Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.43 KB

File metadata and controls

32 lines (23 loc) · 1.43 KB

GetEmployeesResponseObjectLinks

Navigation links for API pagination

Properties

Name Type Description Notes
var_self GetEmployeesResponseObjectLinksSelf [optional]
next GetEmployeesResponseObjectLinksNext [optional]
prev GetEmployeesResponseObjectLinksPrev [optional]

Example

from bamboohr_sdk.models.get_employees_response_object_links import GetEmployeesResponseObjectLinks

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

# convert the object into a dict
get_employees_response_object_links_dict = get_employees_response_object_links_instance.to_dict()
# create an instance of GetEmployeesResponseObjectLinks from a dict
get_employees_response_object_links_from_dict = GetEmployeesResponseObjectLinks.from_dict(get_employees_response_object_links_dict)

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