| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] |
| name |
str |
|
[optional] |
| description |
str |
|
[optional] |
| order |
int |
|
[optional] |
| parent |
int |
|
[optional] |
| public |
int |
|
[optional] |
| created_at |
int |
|
[optional] |
| updated_at |
int |
|
[optional] |
from supportpal_client.models.department import Department
# TODO update the JSON string below
json = "{}"
# create an instance of Department from a JSON string
department_instance = Department.from_json(json)
# print the JSON string representation of the object
print(Department.to_json())
# convert the object into a dict
department_dict = department_instance.to_dict()
# create an instance of Department from a dict
department_from_dict = Department.from_dict(department_dict)
[Back to Model list] [Back to API list] [Back to README]