# DeleteCollectionsJobRequest ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **collection_ids** | **List[str]** | Ids of collections to be deleted. | ## Example ```python from h2ogpte.rest_sync.models.delete_collections_job_request import DeleteCollectionsJobRequest # TODO update the JSON string below json = "{}" # create an instance of DeleteCollectionsJobRequest from a JSON string delete_collections_job_request_instance = DeleteCollectionsJobRequest.from_json(json) # print the JSON string representation of the object print(DeleteCollectionsJobRequest.to_json()) # convert the object into a dict delete_collections_job_request_dict = delete_collections_job_request_instance.to_dict() # create an instance of DeleteCollectionsJobRequest from a dict delete_collections_job_request_from_dict = DeleteCollectionsJobRequest.from_dict(delete_collections_job_request_dict) ```