Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.32 KB

File metadata and controls

32 lines (23 loc) · 1.32 KB

UpdateGroupBindingInfo

UpdateGroupBindingInfo Object ### Description The UpdateGroupBindingInfo object is used as an input to the UpdateGroupBinding API.

Properties

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.

Example

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)

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