Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 969 Bytes

GroupResourceList.md

File metadata and controls

29 lines (20 loc) · 969 Bytes

GroupResourceList

Properties

Name Type Description Notes
group_resources List[GroupResource]

Example

from opal_security.models.group_resource_list import GroupResourceList

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

# convert the object into a dict
group_resource_list_dict = group_resource_list_instance.to_dict()
# create an instance of GroupResourceList from a dict
group_resource_list_from_dict = GroupResourceList.from_dict(group_resource_list_dict)

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