Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 985 Bytes

File metadata and controls

31 lines (22 loc) · 985 Bytes

TicketResponse

Properties

Name Type Description Notes
status str [optional]
message str [optional]
data Ticket [optional]

Example

from supportpal_client.models.ticket_response import TicketResponse

# TODO update the JSON string below
json = "{}"
# create an instance of TicketResponse from a JSON string
ticket_response_instance = TicketResponse.from_json(json)
# print the JSON string representation of the object
print(TicketResponse.to_json())

# convert the object into a dict
ticket_response_dict = ticket_response_instance.to_dict()
# create an instance of TicketResponse from a dict
ticket_response_from_dict = TicketResponse.from_dict(ticket_response_dict)

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