| Name | Type | Description | Notes |
|---|---|---|---|
| properties | DatabaseProperties |
from ionoscloud_dbaas_postgres.models.database import Database
# TODO update the JSON string below
json = "{}"
# create an instance of Database from a JSON string
database_instance = Database.from_json(json)
# print the JSON string representation of the object
print(Database.to_json())
# convert the object into a dict
database_dict = database_instance.to_dict()
# create an instance of Database from a dict
database_from_dict = Database.from_dict(database_dict)