Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 881 Bytes

File metadata and controls

29 lines (20 loc) · 881 Bytes

SiteGroup

Properties

Name Type Description Notes
permissions List[SiteGroupPermissions] [optional]

Example

from formkiq_client.models.site_group import SiteGroup

# TODO update the JSON string below
json = "{}"
# create an instance of SiteGroup from a JSON string
site_group_instance = SiteGroup.from_json(json)
# print the JSON string representation of the object
print(SiteGroup.to_json())

# convert the object into a dict
site_group_dict = site_group_instance.to_dict()
# create an instance of SiteGroup from a dict
site_group_from_dict = SiteGroup.from_dict(site_group_dict)

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