Properties
Example
from deepsearch.cps.apis.public_v2.models.document_meta import DocumentMeta
# TODO update the JSON string below
json = "{}"
# create an instance of DocumentMeta from a JSON string
document_meta_instance = DocumentMeta.from_json(json)
# print the JSON string representation of the object
print(DocumentMeta.to_json())
# convert the object into a dict
document_meta_dict = document_meta_instance.to_dict()
# create an instance of DocumentMeta from a dict
document_meta_form_dict = document_meta.from_dict(document_meta_dict)
[Back to Model list] [Back to API list] [Back to README]