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
Group Binding Group Object ### Description The GroupBindingGroup object is used to represent a group binding group. ### Usage Example Get group binding groups from the GET Group Bindings endpoint.
fromopal_security.models.group_binding_groupimportGroupBindingGroup# TODO update the JSON string belowjson="{}"# create an instance of GroupBindingGroup from a JSON stringgroup_binding_group_instance=GroupBindingGroup.from_json(json)
# print the JSON string representation of the objectprint(GroupBindingGroup.to_json())
# convert the object into a dictgroup_binding_group_dict=group_binding_group_instance.to_dict()
# create an instance of GroupBindingGroup from a dictgroup_binding_group_from_dict=GroupBindingGroup.from_dict(group_binding_group_dict)