Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.24 KB

File metadata and controls

33 lines (24 loc) · 1.24 KB

Permission

Properties

Name Type Description Notes
conditions PermissionConditions [optional]
created datetime Timestamp when the permission was assigned [optional] [readonly]
label str The assigned Okta permission [optional] [readonly]
last_updated datetime Timestamp when the permission was last updated [optional] [readonly]
links PermissionLinks [optional]

Example

from okta.models.permission import Permission

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

# convert the object into a dict
permission_dict = permission_instance.to_dict()
# create an instance of Permission from a dict
permission_from_dict = Permission.from_dict(permission_dict)

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