Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 778 Bytes

File metadata and controls

28 lines (19 loc) · 778 Bytes

TicketCc

Properties

Name Type Description Notes

Example

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)

[Back to Model list] [Back to API list] [Back to README]