Response for listing interactions with pagination. Returns a paginated list of interaction records matching the query filters.
| Name | Type | Description | Notes |
|---|---|---|---|
| results | List[InteractionResponse] | List of interactions matching the query filters | |
| pagination | PaginationResponse | Pagination information for navigating result pages |
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)