Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.38 KB

File metadata and controls

33 lines (24 loc) · 1.38 KB

IndexRecommendationsResponse

Response for index recommendations endpoint.

Properties

Name Type Description Notes
namespace_id str Namespace ID analyzed
time_range_days int Number of days analyzed
recommendations List[IndexRecommendation] Index recommendations
summary Dict[str, int] Summary statistics (high_priority, medium_priority, low_priority counts)

Example

from mixpeek.models.index_recommendations_response import IndexRecommendationsResponse

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

# convert the object into a dict
index_recommendations_response_dict = index_recommendations_response_instance.to_dict()
# create an instance of IndexRecommendationsResponse from a dict
index_recommendations_response_from_dict = IndexRecommendationsResponse.from_dict(index_recommendations_response_dict)

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