Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.22 KB

File metadata and controls

32 lines (23 loc) · 1.22 KB

CreateRequestInfoSupportTicket

Properties

Name Type Description Notes
ticketing_provider TicketingProviderEnum
remote_id str
identifier str
url str

Example

from opal_security.models.create_request_info_support_ticket import CreateRequestInfoSupportTicket

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

# convert the object into a dict
create_request_info_support_ticket_dict = create_request_info_support_ticket_instance.to_dict()
# create an instance of CreateRequestInfoSupportTicket from a dict
create_request_info_support_ticket_from_dict = CreateRequestInfoSupportTicket.from_dict(create_request_info_support_ticket_dict)

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