Document growth trends.
| Name | Type | Description | Notes |
|---|---|---|---|
| collection_id | str | ||
| time_range | ApiAnalyticsCollectionsModelsTimeRange | ||
| metrics | List[GrowthMetric] | ||
| summary | Dict[str, object] | [optional] |
from mixpeek.models.growth_metrics_response import GrowthMetricsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GrowthMetricsResponse from a JSON string
growth_metrics_response_instance = GrowthMetricsResponse.from_json(json)
# print the JSON string representation of the object
print(GrowthMetricsResponse.to_json())
# convert the object into a dict
growth_metrics_response_dict = growth_metrics_response_instance.to_dict()
# create an instance of GrowthMetricsResponse from a dict
growth_metrics_response_from_dict = GrowthMetricsResponse.from_dict(growth_metrics_response_dict)