# DeleteChatSessionsJobRequest ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **session_ids** | **List[str]** | Ids of chat sessions to be deleted. | ## Example ```python from h2ogpte.rest_async.models.delete_chat_sessions_job_request import DeleteChatSessionsJobRequest # TODO update the JSON string below json = "{}" # create an instance of DeleteChatSessionsJobRequest from a JSON string delete_chat_sessions_job_request_instance = DeleteChatSessionsJobRequest.from_json(json) # print the JSON string representation of the object print(DeleteChatSessionsJobRequest.to_json()) # convert the object into a dict delete_chat_sessions_job_request_dict = delete_chat_sessions_job_request_instance.to_dict() # create an instance of DeleteChatSessionsJobRequest from a dict delete_chat_sessions_job_request_from_dict = DeleteChatSessionsJobRequest.from_dict(delete_chat_sessions_job_request_dict) ```