Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 777 Bytes

BackupID.md

File metadata and controls

28 lines (19 loc) · 777 Bytes

BackupID

Properties

Name Type Description Notes

Example

from clientapi_cpanel.models.backup_id import BackupID

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

# convert the object into a dict
backup_id_dict = backup_id_instance.to_dict()
# create an instance of BackupID from a dict
backup_id_from_dict = BackupID.from_dict(backup_id_dict)

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