Time range for analytics queries.
| Name | Type | Description | Notes |
|---|---|---|---|
| start | datetime | ||
| end | datetime |
from mixpeek.models.api_analytics_collections_models_time_range import ApiAnalyticsCollectionsModelsTimeRange
# TODO update the JSON string below
json = "{}"
# create an instance of ApiAnalyticsCollectionsModelsTimeRange from a JSON string
api_analytics_collections_models_time_range_instance = ApiAnalyticsCollectionsModelsTimeRange.from_json(json)
# print the JSON string representation of the object
print(ApiAnalyticsCollectionsModelsTimeRange.to_json())
# convert the object into a dict
api_analytics_collections_models_time_range_dict = api_analytics_collections_models_time_range_instance.to_dict()
# create an instance of ApiAnalyticsCollectionsModelsTimeRange from a dict
api_analytics_collections_models_time_range_from_dict = ApiAnalyticsCollectionsModelsTimeRange.from_dict(api_analytics_collections_models_time_range_dict)