| Name | Type | Description | Notes |
|---|
from supportpal_client.models.ticket_cc import TicketCc
# TODO update the JSON string below
json = "{}"
# create an instance of TicketCc from a JSON string
ticket_cc_instance = TicketCc.from_json(json)
# print the JSON string representation of the object
print(TicketCc.to_json())
# convert the object into a dict
ticket_cc_dict = ticket_cc_instance.to_dict()
# create an instance of TicketCc from a dict
ticket_cc_from_dict = TicketCc.from_dict(ticket_cc_dict)