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