| Name | Type | Description | Notes |
|---|---|---|---|
| updated_ticket_details | List[UpdateTenantTicketRequestMixin] | Request payload for ticket updation | |
| tenant_id | str | The unique identifier of the tenant |
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)