Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.07 KB

File metadata and controls

29 lines (20 loc) · 1.07 KB

UpdateResourceInfoList

Properties

Name Type Description Notes
resources List[UpdateResourceInfo] A list of resources with information to update.

Example

from opal_security.models.update_resource_info_list import UpdateResourceInfoList

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

# convert the object into a dict
update_resource_info_list_dict = update_resource_info_list_instance.to_dict()
# create an instance of UpdateResourceInfoList from a dict
update_resource_info_list_from_dict = UpdateResourceInfoList.from_dict(update_resource_info_list_dict)

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