Link to next page
| Name | Type | Description | Notes |
|---|---|---|---|
| href | str | URL of the next page | [optional] |
from bamboohr_sdk.models.get_employees_response_object_links_next import GetEmployeesResponseObjectLinksNext
# TODO update the JSON string below
json = "{}"
# create an instance of GetEmployeesResponseObjectLinksNext from a JSON string
get_employees_response_object_links_next_instance = GetEmployeesResponseObjectLinksNext.from_json(json)
# print the JSON string representation of the object
print(GetEmployeesResponseObjectLinksNext.to_json())
# convert the object into a dict
get_employees_response_object_links_next_dict = get_employees_response_object_links_next_instance.to_dict()
# create an instance of GetEmployeesResponseObjectLinksNext from a dict
get_employees_response_object_links_next_from_dict = GetEmployeesResponseObjectLinksNext.from_dict(get_employees_response_object_links_next_dict)