Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

GroupingInterval.md

File metadata and controls

29 lines (20 loc) · 1.01 KB

GroupingInterval

Interval used to aggregate or regularize data. One of the time line specifiers.

Properties

Name Type Description Notes

Example

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)

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