# DeleteDocumentsJobRequest ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **document_ids** | **List[str]** | Ids of documents to be deleted. | ## Example ```python from h2ogpte.rest_async.models.delete_documents_job_request import DeleteDocumentsJobRequest # TODO update the JSON string below json = "{}" # create an instance of DeleteDocumentsJobRequest from a JSON string delete_documents_job_request_instance = DeleteDocumentsJobRequest.from_json(json) # print the JSON string representation of the object print(DeleteDocumentsJobRequest.to_json()) # convert the object into a dict delete_documents_job_request_dict = delete_documents_job_request_instance.to_dict() # create an instance of DeleteDocumentsJobRequest from a dict delete_documents_job_request_from_dict = DeleteDocumentsJobRequest.from_dict(delete_documents_job_request_dict) ```