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