Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.5 KB

InlineResponse2009ResultData.md

File metadata and controls

31 lines (22 loc) · 1.5 KB

InlineResponse2009ResultData

Properties

Name Type Description Notes
log_id str 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

from clientapi_cpanel.models.inline_response2009_result_data import InlineResponse2009ResultData

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

# convert the object into a dict
inline_response2009_result_data_dict = inline_response2009_result_data_instance.to_dict()
# create an instance of InlineResponse2009ResultData from a dict
inline_response2009_result_data_from_dict = InlineResponse2009ResultData.from_dict(inline_response2009_result_data_dict)

[Back to Model list] [Back to API list] [Back to README]