Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.25 KB

File metadata and controls

34 lines (25 loc) · 1.25 KB

ResourceSet

Properties

Name Type Description Notes
created datetime Timestamp when the role was created [optional] [readonly]
description str Description of the Resource Set [optional]
id str Unique key for the role [optional] [readonly]
label str Unique label for the Resource Set [optional]
last_updated datetime Timestamp when the role was last updated [optional] [readonly]
links ResourceSetLinks [optional]

Example

from okta.models.resource_set import ResourceSet

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

# convert the object into a dict
resource_set_dict = resource_set_instance.to_dict()
# create an instance of ResourceSet from a dict
resource_set_from_dict = ResourceSet.from_dict(resource_set_dict)

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