Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.1 KB

File metadata and controls

28 lines (20 loc) · 1.1 KB

PerformActionOnBackupRequest

Properties

Name Type Description Notes
action object Действие над бэкапом.

Example

from timeweb_cloud_api.models.perform_action_on_backup_request import PerformActionOnBackupRequest

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

# convert the object into a dict
perform_action_on_backup_request_dict = perform_action_on_backup_request_instance.to_dict()
# create an instance of PerformActionOnBackupRequest from a dict
perform_action_on_backup_request_form_dict = perform_action_on_backup_request.from_dict(perform_action_on_backup_request_dict)

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