Response for listing evaluations.
| Name | Type | Description | Notes |
|---|---|---|---|
| evaluations | List[EvaluationRecord] | List of evaluations | |
| total | int | Total count | |
| page | int | Current page | |
| page_size | int | Page size |
from mixpeek.models.evaluation_list_response import EvaluationListResponse
# TODO update the JSON string below
json = "{}"
# create an instance of EvaluationListResponse from a JSON string
evaluation_list_response_instance = EvaluationListResponse.from_json(json)
# print the JSON string representation of the object
print(EvaluationListResponse.to_json())
# convert the object into a dict
evaluation_list_response_dict = evaluation_list_response_instance.to_dict()
# create an instance of EvaluationListResponse from a dict
evaluation_list_response_from_dict = EvaluationListResponse.from_dict(evaluation_list_response_dict)