GroupContent¶
The contents of an object group
Properties¶
| Name | Type | Description | Notes |
|---|---|---|---|
| literals | List[SingleContent] | List of content literals | [optional] |
| referenced_object_uids | List[str] | Set of UIDs of the group's referenced objects | [optional] |
Example¶
from scc_firewall_manager_sdk.models.group_content import GroupContent
# TODO update the JSON string below
json = "{}"
# create an instance of GroupContent from a JSON string
group_content_instance = GroupContent.from_json(json)
# print the JSON string representation of the object
print(GroupContent.to_json())
# convert the object into a dict
group_content_dict = group_content_instance.to_dict()
# create an instance of GroupContent from a dict
group_content_form_dict = group_content.from_dict(group_content_dict)