IngestUploadBody
Properties
Name |
Type |
Description |
Notes |
---|---|---|---|
metadata |
object |
Metadata for the document. |
[optional] |
Example
from h2ogpte.rest.models.ingest_upload_body import IngestUploadBody
# TODO update the JSON string below
json = "{}"
# create an instance of IngestUploadBody from a JSON string
ingest_upload_body_instance = IngestUploadBody.from_json(json)
# print the JSON string representation of the object
print(IngestUploadBody.to_json())
# convert the object into a dict
ingest_upload_body_dict = ingest_upload_body_instance.to_dict()
# create an instance of IngestUploadBody from a dict
ingest_upload_body_from_dict = IngestUploadBody.from_dict(ingest_upload_body_dict)