| Name | Type | Description | Notes |
|---|---|---|---|
| metadata | dict[str, object] | Metadata | [optional] |
| properties | Backup |
from ionoscloud_dbaas_postgres.models.backup_create import BackupCreate
# TODO update the JSON string below
json = "{}"
# create an instance of BackupCreate from a JSON string
backup_create_instance = BackupCreate.from_json(json)
# print the JSON string representation of the object
print(BackupCreate.to_json())
# convert the object into a dict
backup_create_dict = backup_create_instance.to_dict()
# create an instance of BackupCreate from a dict
backup_create_from_dict = BackupCreate.from_dict(backup_create_dict)