Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.22 KB

File metadata and controls

30 lines (21 loc) · 1.22 KB

UpdateTenantTicketsRequest

Properties

Name Type Description Notes
updated_ticket_details List[UpdateTenantTicketRequestMixin] Request payload for ticket updation
tenant_id str The unique identifier of the tenant

Example

from onelens_backend_client.models.update_tenant_tickets_request import UpdateTenantTicketsRequest

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

# convert the object into a dict
update_tenant_tickets_request_dict = update_tenant_tickets_request_instance.to_dict()
# create an instance of UpdateTenantTicketsRequest from a dict
update_tenant_tickets_request_form_dict = update_tenant_tickets_request.from_dict(update_tenant_tickets_request_dict)

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