Skip to content

PageConversation

Properties

NameTypeDescriptionNotes
itemsList[Conversation]
totalint
pageint
sizeint
pagesint[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)

[Back to API list] [Back to SDK]

Released under the MIT License.