UpdateGroupBindingInfo Object ### Description The UpdateGroupBindingInfo object is used as an input to the UpdateGroupBinding API.
| Name | Type | Description | Notes |
|---|---|---|---|
| group_binding_id | UUID | The ID of the group binding. | |
| source_group_id | UUID | The ID of the source group. | |
| groups | List[CreateGroupBindingInfoGroupsInner] | The list of groups. |
from opal_security.models.update_group_binding_info import UpdateGroupBindingInfo
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateGroupBindingInfo from a JSON string
update_group_binding_info_instance = UpdateGroupBindingInfo.from_json(json)
# print the JSON string representation of the object
print(UpdateGroupBindingInfo.to_json())
# convert the object into a dict
update_group_binding_info_dict = update_group_binding_info_instance.to_dict()
# create an instance of UpdateGroupBindingInfo from a dict
update_group_binding_info_from_dict = UpdateGroupBindingInfo.from_dict(update_group_binding_info_dict)