Appearance
PageConversation
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| items | List[Conversation] | ||
| total | int | ||
| page | int | ||
| size | int | ||
| pages | int | [optional] |
Example
python
from syntheticusers.models.page_conversation import PageConversation
# TODO update the JSON string below
json = "{}"
# create an instance of PageConversation from a JSON string
page_conversation_instance = PageConversation.from_json(json)
# print the JSON string representation of the object
print(PageConversation.to_json())
# convert the object into a dict
page_conversation_dict = page_conversation_instance.to_dict()
# create an instance of PageConversation from a dict
page_conversation_from_dict = PageConversation.from_dict(page_conversation_dict)