Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.21 KB

File metadata and controls

30 lines (21 loc) · 1.21 KB

CreateTenantTicketsRequest

Properties

Name Type Description Notes
new_ticket_details List[CreateTenantTicketRequestMixin] Request payload for ticket creation
tenant_id str The unique identifier of the tenant

Example

from onelens_backend_client.models.create_tenant_tickets_request import CreateTenantTicketsRequest

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

# convert the object into a dict
create_tenant_tickets_request_dict = create_tenant_tickets_request_instance.to_dict()
# create an instance of CreateTenantTicketsRequest from a dict
create_tenant_tickets_request_form_dict = create_tenant_tickets_request.from_dict(create_tenant_tickets_request_dict)

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