Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.08 KB

File metadata and controls

36 lines (27 loc) · 1.08 KB

Department

Properties

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]

Example

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]