| 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 | UserProperties |
from ionoscloud_dbaas_postgres.models.user_resource import UserResource
# TODO update the JSON string below
json = "{}"
# create an instance of UserResource from a JSON string
user_resource_instance = UserResource.from_json(json)
# print the JSON string representation of the object
print(UserResource.to_json())
# convert the object into a dict
user_resource_dict = user_resource_instance.to_dict()
# create an instance of UserResource from a dict
user_resource_from_dict = UserResource.from_dict(user_resource_dict)