Response for most queried fields endpoint.
| Name | Type | Description | Notes |
|---|---|---|---|
| namespace_id | str | Namespace ID analyzed | |
| time_range_days | int | Number of days analyzed | |
| fields | List[FieldQueryMetrics] | Most queried fields | |
| total_fields | int | Total unique fields found |
from mixpeek.models.most_queried_fields_response import MostQueriedFieldsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of MostQueriedFieldsResponse from a JSON string
most_queried_fields_response_instance = MostQueriedFieldsResponse.from_json(json)
# print the JSON string representation of the object
print(MostQueriedFieldsResponse.to_json())
# convert the object into a dict
most_queried_fields_response_dict = most_queried_fields_response_instance.to_dict()
# create an instance of MostQueriedFieldsResponse from a dict
most_queried_fields_response_from_dict = MostQueriedFieldsResponse.from_dict(most_queried_fields_response_dict)