Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 988 Bytes

File metadata and controls

29 lines (20 loc) · 988 Bytes

CreateBackupRequest

Properties

Name Type Description Notes
description str Optional backup description [optional]

Example

from quantcdn.models.create_backup_request import CreateBackupRequest

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

# convert the object into a dict
create_backup_request_dict = create_backup_request_instance.to_dict()
# create an instance of CreateBackupRequest from a dict
create_backup_request_from_dict = CreateBackupRequest.from_dict(create_backup_request_dict)

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