| Name | Type | Description | Notes |
|---|---|---|---|
| resource_sets | List[ResourceSet] | [optional] | |
| links | LinksNext | [optional] |
from okta.models.resource_sets import ResourceSets
# TODO update the JSON string below
json = "{}"
# create an instance of ResourceSets from a JSON string
resource_sets_instance = ResourceSets.from_json(json)
# print the JSON string representation of the object
print(ResourceSets.to_json())
# convert the object into a dict
resource_sets_dict = resource_sets_instance.to_dict()
# create an instance of ResourceSets from a dict
resource_sets_from_dict = ResourceSets.from_dict(resource_sets_dict)