Interval used to aggregate or regularize data. One of the time line specifiers.
Name | Type | Description | Notes |
---|
from waylay.services.queries.models.grouping_interval import GroupingInterval
# TODO update the JSON string below
json = "{}"
# create an instance of GroupingInterval from a JSON string
grouping_interval_instance = GroupingInterval.from_json(json)
# print the JSON string representation of the object
print GroupingInterval.to_json()
# convert the object into a dict
grouping_interval_dict = grouping_interval_instance.to_dict()
# create an instance of GroupingInterval from a dict
grouping_interval_form_dict = grouping_interval.from_dict(grouping_interval_dict)