Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.14 KB

File metadata and controls

33 lines (24 loc) · 1.14 KB

LatencyResponse

Processing latency distribution.

Properties

Name Type Description Notes
collection_id str
time_range ApiAnalyticsCollectionsModelsTimeRange
metrics List[LatencyMetric]
slowest_documents List[Dict[str, object]] [optional]

Example

from mixpeek.models.latency_response import LatencyResponse

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

# convert the object into a dict
latency_response_dict = latency_response_instance.to_dict()
# create an instance of LatencyResponse from a dict
latency_response_from_dict = LatencyResponse.from_dict(latency_response_dict)

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