| Name | Type | Description | Notes |
|---|---|---|---|
| offset | int | The offset specified in the request (if none was specified, the default offset is 0). | [optional] [default to 0] |
| limit | int | The limit specified in the request (if none was specified, the default limit is 100). | [optional] [default to 100] |
| links | PaginationLinks | [optional] | |
| type | ResourceType | ||
| id | str | The unique ID of the resource. | |
| href | str | Absolute URL of the resource. | |
| items | list[UserResource] |
from ionoscloud_dbaas_postgres.models.user_list import UserList
# TODO update the JSON string below
json = "{}"
# create an instance of UserList from a JSON string
user_list_instance = UserList.from_json(json)
# print the JSON string representation of the object
print(UserList.to_json())
# convert the object into a dict
user_list_dict = user_list_instance.to_dict()
# create an instance of UserList from a dict
user_list_from_dict = UserList.from_dict(user_list_dict)