| Name | Type | Description | Notes |
|---|---|---|---|
| items | list[UserResource] |
from ionoscloud_dbaas_postgres.models.user_items import UserItems
# TODO update the JSON string below
json = "{}"
# create an instance of UserItems from a JSON string
user_items_instance = UserItems.from_json(json)
# print the JSON string representation of the object
print(UserItems.to_json())
# convert the object into a dict
user_items_dict = user_items_instance.to_dict()
# create an instance of UserItems from a dict
user_items_from_dict = UserItems.from_dict(user_items_dict)