Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 851 Bytes

File metadata and controls

29 lines (20 loc) · 851 Bytes

Database

Properties

Name Type Description Notes
properties DatabaseProperties

Example

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)

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