| Name | Type | Description | Notes |
|---|---|---|---|
| error | str | [optional] |
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)