Name | Type | Description | Notes |
---|
from waylay.services.data.models.grouping import Grouping
# TODO update the JSON string below
json = "{}"
# create an instance of Grouping from a JSON string
grouping_instance = Grouping.from_json(json)
# print the JSON string representation of the object
print Grouping.to_json()
# convert the object into a dict
grouping_dict = grouping_instance.to_dict()
# create an instance of Grouping from a dict
grouping_form_dict = grouping.from_dict(grouping_dict)