| Name | Type | Description | Notes |
|---|---|---|---|
| items | List[UserResponse] | ||
| total | int | ||
| page | int | ||
| size | int | ||
| pages | int |
from codegen_api_client.models.page_user_response import PageUserResponse
# TODO update the JSON string below
json = "{}"
# create an instance of PageUserResponse from a JSON string
page_user_response_instance = PageUserResponse.from_json(json)
# print the JSON string representation of the object
print(PageUserResponse.to_json())
# convert the object into a dict
page_user_response_dict = page_user_response_instance.to_dict()
# create an instance of PageUserResponse from a dict
page_user_response_from_dict = PageUserResponse.from_dict(page_user_response_dict)