| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] |
| name |
str |
|
[optional] |
| colour |
str |
|
[optional] |
| order |
int |
|
[optional] |
| created_at |
int |
|
[optional] |
| updated_at |
int |
|
[optional] |
from supportpal_client.models.priority import Priority
# TODO update the JSON string below
json = "{}"
# create an instance of Priority from a JSON string
priority_instance = Priority.from_json(json)
# print the JSON string representation of the object
print(Priority.to_json())
# convert the object into a dict
priority_dict = priority_instance.to_dict()
# create an instance of Priority from a dict
priority_from_dict = Priority.from_dict(priority_dict)
[Back to Model list] [Back to API list] [Back to README]