Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 898 Bytes

File metadata and controls

30 lines (21 loc) · 898 Bytes

Request

Properties

Name Type Description Notes
status str The new status for the time off request.
note str A note to attach to the change in status. [optional]

Example

from bamboohr_sdk.models.request import Request

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

# convert the object into a dict
request_dict = request_instance.to_dict()
# create an instance of Request from a dict
request_from_dict = Request.from_dict(request_dict)

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