You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The log file's restoration identification (ID). The system uses the backup restoration's date to create this ID. The ID is in ISO-8601 Date Time format with the log's revision number appended.
[optional]
log_path
str
The filepath to the backup restoration's log file.
[optional]
messages
List[str]
An array of statements about the database's restoration.
[optional]
Example
fromclientapi_cpanel.models.inline_response20010_result_dataimportInlineResponse20010ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse20010ResultData from a JSON stringinline_response20010_result_data_instance=InlineResponse20010ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse20010ResultData.to_json())
# convert the object into a dictinline_response20010_result_data_dict=inline_response20010_result_data_instance.to_dict()
# create an instance of InlineResponse20010ResultData from a dictinline_response20010_result_data_from_dict=InlineResponse20010ResultData.from_dict(inline_response20010_result_data_dict)