| Name |
Type |
Description |
Notes |
| name |
str |
The databasename of a given database. |
|
| owner |
str |
The name of the role owning a given database. |
|
from ionoscloud_dbaas_postgres.models.database_properties import DatabaseProperties
# TODO update the JSON string below
json = "{}"
# create an instance of DatabaseProperties from a JSON string
database_properties_instance = DatabaseProperties.from_json(json)
# print the JSON string representation of the object
print(DatabaseProperties.to_json())
# convert the object into a dict
database_properties_dict = database_properties_instance.to_dict()
# create an instance of DatabaseProperties from a dict
database_properties_from_dict = DatabaseProperties.from_dict(database_properties_dict)
[Back to Model list] [Back to API list] [Back to README]