| Name | Type | Description | Notes |
|---|---|---|---|
| resources | List[ResourceSetResource] | [optional] | |
| links | ResourceSetResourcesLinks | [optional] |
from okta.models.resource_set_resources import ResourceSetResources
# TODO update the JSON string below
json = "{}"
# create an instance of ResourceSetResources from a JSON string
resource_set_resources_instance = ResourceSetResources.from_json(json)
# print the JSON string representation of the object
print(ResourceSetResources.to_json())
# convert the object into a dict
resource_set_resources_dict = resource_set_resources_instance.to_dict()
# create an instance of ResourceSetResources from a dict
resource_set_resources_from_dict = ResourceSetResources.from_dict(resource_set_resources_dict)