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 Object ### Description The GroupBinding object is used to represent a group binding. ### Usage Example Get group bindings from the GET Group Bindings endpoint.
Properties
Name
Type
Description
Notes
group_binding_id
UUID
The ID of the group binding.
created_by_id
UUID
The ID of the user that created the group binding.
fromopal_security.models.group_bindingimportGroupBinding# TODO update the JSON string belowjson="{}"# create an instance of GroupBinding from a JSON stringgroup_binding_instance=GroupBinding.from_json(json)
# print the JSON string representation of the objectprint(GroupBinding.to_json())
# convert the object into a dictgroup_binding_dict=group_binding_instance.to_dict()
# create an instance of GroupBinding from a dictgroup_binding_from_dict=GroupBinding.from_dict(group_binding_dict)