Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 817 Bytes

File metadata and controls

29 lines (20 loc) · 817 Bytes

Forbidden

Properties

Name Type Description Notes
error str [optional]

Example

from bamboohr_sdk.models.forbidden import Forbidden

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

# convert the object into a dict
forbidden_dict = forbidden_instance.to_dict()
# create an instance of Forbidden from a dict
forbidden_from_dict = Forbidden.from_dict(forbidden_dict)

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