Log¶
Log entry to describe an ETL task on a document.
Properties¶
Example¶
from deepsearch.cps.apis.public_v2.models.log import Log
# TODO update the JSON string below
json = "{}"
# create an instance of Log from a JSON string
log_instance = Log.from_json(json)
# print the JSON string representation of the object
print(Log.to_json())
# convert the object into a dict
log_dict = log_instance.to_dict()
# create an instance of Log from a dict
log_form_dict = log.from_dict(log_dict)