You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GroupContainingGroup Object ### Description The GroupContainingGroup object is used to represent a relationship between a group and a group.
Properties
Name
Type
Description
Notes
containing_group_id
UUID
The groupID of the containing group.
duration_minutes
int
The updated duration for which the group can be accessed (in minutes). Use 0 for indefinite.
[optional]
access_level_remote_id
str
The updated remote ID of the access level granted to this group.
[optional]
Example
fromopal_security.models.group_containing_groupimportGroupContainingGroup# TODO update the JSON string belowjson="{}"# create an instance of GroupContainingGroup from a JSON stringgroup_containing_group_instance=GroupContainingGroup.from_json(json)
# print the JSON string representation of the objectprint(GroupContainingGroup.to_json())
# convert the object into a dictgroup_containing_group_dict=group_containing_group_instance.to_dict()
# create an instance of GroupContainingGroup from a dictgroup_containing_group_from_dict=GroupContainingGroup.from_dict(group_containing_group_dict)