Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

File metadata and controls

30 lines (21 loc) · 1.01 KB

AggregationResponseStats

Properties

Name Type Description Notes
time_ms int
scanned int

Example

from client.models.aggregation_response_stats import AggregationResponseStats

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

# convert the object into a dict
aggregation_response_stats_dict = aggregation_response_stats_instance.to_dict()
# create an instance of AggregationResponseStats from a dict
aggregation_response_stats_from_dict = AggregationResponseStats.from_dict(aggregation_response_stats_dict)

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