Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.18 KB

File metadata and controls

31 lines (22 loc) · 1.18 KB

GroupBindingGroup

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.

Properties

Name Type Description Notes
group_id UUID The ID of the group.
group_type GroupTypeEnum

Example

from opal_security.models.group_binding_group import GroupBindingGroup

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

# convert the object into a dict
group_binding_group_dict = group_binding_group_instance.to_dict()
# create an instance of GroupBindingGroup from a dict
group_binding_group_from_dict = GroupBindingGroup.from_dict(group_binding_group_dict)

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