Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 774 Bytes

Grouping.md

File metadata and controls

28 lines (19 loc) · 774 Bytes

Grouping

Properties

Name Type Description Notes

Example

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)

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