Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.32 KB

File metadata and controls

31 lines (22 loc) · 1.32 KB

ListInteractionsResponse

Response for listing interactions with pagination. Returns a paginated list of interaction records matching the query filters.

Properties

Name Type Description Notes
results List[InteractionResponse] List of interactions matching the query filters
pagination PaginationResponse Pagination information for navigating result pages

Example

from mixpeek.models.list_interactions_response import ListInteractionsResponse

# TODO update the JSON string below
json = "{}"
# create an instance of ListInteractionsResponse from a JSON string
list_interactions_response_instance = ListInteractionsResponse.from_json(json)
# print the JSON string representation of the object
print(ListInteractionsResponse.to_json())

# convert the object into a dict
list_interactions_response_dict = list_interactions_response_instance.to_dict()
# create an instance of ListInteractionsResponse from a dict
list_interactions_response_from_dict = ListInteractionsResponse.from_dict(list_interactions_response_dict)

[Back to Model list] [Back to API list] [Back to README]