| Name | Type | Description | Notes |
|---|---|---|---|
| type | ResourceType | ||
| id | str | The unique ID of the resource. | |
| href | str | Absolute URL of the resource. | |
| metadata | Metadata | [optional] | |
| properties | DatabaseProperties |
from ionoscloud_dbaas_postgres.models.database_resource import DatabaseResource
# TODO update the JSON string below
json = "{}"
# create an instance of DatabaseResource from a JSON string
database_resource_instance = DatabaseResource.from_json(json)
# print the JSON string representation of the object
print(DatabaseResource.to_json())
# convert the object into a dict
database_resource_dict = database_resource_instance.to_dict()
# create an instance of DatabaseResource from a dict
database_resource_from_dict = DatabaseResource.from_dict(database_resource_dict)