Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

UpdateGroupResourcesInfo

Properties

Name Type Description Notes
resources List[ResourceWithAccessLevel]

Example

from opal_security.models.update_group_resources_info import UpdateGroupResourcesInfo

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

# convert the object into a dict
update_group_resources_info_dict = update_group_resources_info_instance.to_dict()
# create an instance of UpdateGroupResourcesInfo from a dict
update_group_resources_info_from_dict = UpdateGroupResourcesInfo.from_dict(update_group_resources_info_dict)

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