Summary of a persisted query result for listing
| Name | Type | Description | Notes |
|---|---|---|---|
| created_at | datetime | ||
| error_message | str | [optional] | |
| id | str | ||
| status | str |
from hotdata.models.result_info import ResultInfo
# TODO update the JSON string below
json = "{}"
# create an instance of ResultInfo from a JSON string
result_info_instance = ResultInfo.from_json(json)
# print the JSON string representation of the object
print(ResultInfo.to_json())
# convert the object into a dict
result_info_dict = result_info_instance.to_dict()
# create an instance of ResultInfo from a dict
result_info_from_dict = ResultInfo.from_dict(result_info_dict)