| Name | Type | Description | Notes |
|---|---|---|---|
| data | List[VPSV1BackupBackupResource] | Array of `VPS.V1.Backup.BackupResource` | [optional] |
| meta | CommonSchemaPaginationMetaSchema | [optional] |
from hostinger_api.models.vpsv1_backup_list_response import VPSV1BackupListResponse
# TODO update the JSON string below
json = "{}"
# create an instance of VPSV1BackupListResponse from a JSON string
vpsv1_backup_list_response_instance = VPSV1BackupListResponse.from_json(json)
# print the JSON string representation of the object
print(VPSV1BackupListResponse.to_json())
# convert the object into a dict
vpsv1_backup_list_response_dict = vpsv1_backup_list_response_instance.to_dict()
# create an instance of VPSV1BackupListResponse from a dict
vpsv1_backup_list_response_from_dict = VPSV1BackupListResponse.from_dict(vpsv1_backup_list_response_dict)