| Name | Type | Description | Notes |
|---|---|---|---|
| type | ResourceType | ||
| id | str | The unique ID of the resource. | |
| href | str | Absolute URL of the resource. |
from ionoscloud_dbaas_postgres.models.resource import Resource
# TODO update the JSON string below
json = "{}"
# create an instance of Resource from a JSON string
resource_instance = Resource.from_json(json)
# print the JSON string representation of the object
print(Resource.to_json())
# convert the object into a dict
resource_dict = resource_instance.to_dict()
# create an instance of Resource from a dict
resource_from_dict = Resource.from_dict(resource_dict)