Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.17 KB

File metadata and controls

35 lines (26 loc) · 1.17 KB

BackupStatus

Properties

Name Type Description Notes
completion_timestamp datetime [optional]
failure_message str [optional]
failure_reason str [optional]
filename str Name of backup file. [optional]
phase str [optional]
size int Size of backup file. Data unit: byte [optional]
start_timestamp datetime [optional]

Example

from halo_client.models.backup_status import BackupStatus

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

# convert the object into a dict
backup_status_dict = backup_status_instance.to_dict()
# create an instance of BackupStatus from a dict
backup_status_from_dict = BackupStatus.from_dict(backup_status_dict)

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