Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.23 KB

File metadata and controls

33 lines (24 loc) · 1.23 KB

BenchmarkListResponse

Response for listing benchmarks.

Properties

Name Type Description Notes
benchmarks List[BenchmarkResponse] List of benchmarks.
total int Total count matching filter.
page int Current page. [optional] [default to 1]
page_size int Items per page. [optional] [default to 20]

Example

from mixpeek.models.benchmark_list_response import BenchmarkListResponse

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

# convert the object into a dict
benchmark_list_response_dict = benchmark_list_response_instance.to_dict()
# create an instance of BenchmarkListResponse from a dict
benchmark_list_response_from_dict = BenchmarkListResponse.from_dict(benchmark_list_response_dict)

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