# DocumentSummary ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **id** | **str** | A unique identifier of the document summary | **document_id** | **str** | A unique identifier of the document | **content** | **str** | | **error** | **str** | | **kwargs** | **str** | | **created_at** | **str** | | **usage_stats** | **str** | | [optional] ## Example ```python from h2ogpte.rest_async.models.document_summary import DocumentSummary # TODO update the JSON string below json = "{}" # create an instance of DocumentSummary from a JSON string document_summary_instance = DocumentSummary.from_json(json) # print the JSON string representation of the object print(DocumentSummary.to_json()) # convert the object into a dict document_summary_dict = document_summary_instance.to_dict() # create an instance of DocumentSummary from a dict document_summary_from_dict = DocumentSummary.from_dict(document_summary_dict) ```