Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 953 Bytes

File metadata and controls

30 lines (21 loc) · 953 Bytes

ResourceSets

Properties

Name Type Description Notes
resource_sets List[ResourceSet] [optional]
links LinksNext [optional]

Example

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)

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