Skip to content

ModelDate

A string representation of the acquisition datetime in ISO 8601 format.

Properties

Name Type Description Notes

Example

from deepsearch.cps.apis.public_v2.models.model_date import ModelDate

# TODO update the JSON string below
json = "{}"
# create an instance of ModelDate from a JSON string
model_date_instance = ModelDate.from_json(json)
# print the JSON string representation of the object
print(ModelDate.to_json())

# convert the object into a dict
model_date_dict = model_date_instance.to_dict()
# create an instance of ModelDate from a dict
model_date_form_dict = model_date.from_dict(model_date_dict)
[Back to Model list] [Back to API list] [Back to README]