Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

CreateTicketRequest.md

File metadata and controls

31 lines (22 loc) · 1.03 KB

CreateTicketRequest

Properties

Name Type Description Notes
subject str The ticket subject
note str The ticket note
sender str Customer email

Example

from pfruck_contabo.models.create_ticket_request import CreateTicketRequest

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

# convert the object into a dict
create_ticket_request_dict = create_ticket_request_instance.to_dict()
# create an instance of CreateTicketRequest from a dict
create_ticket_request_from_dict = CreateTicketRequest.from_dict(create_ticket_request_dict)

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