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