Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.17 KB

File metadata and controls

33 lines (24 loc) · 1.17 KB

EvaluationListResponse

Response for listing evaluations.

Properties

Name Type Description Notes
evaluations List[EvaluationRecord] List of evaluations
total int Total count
page int Current page
page_size int Page size

Example

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)

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