Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 947 Bytes

File metadata and controls

30 lines (21 loc) · 947 Bytes

BackupCreate

Properties

Name Type Description Notes
metadata dict[str, object] Metadata [optional]
properties Backup

Example

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)

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