Permissions assigned to the role
| Name | Type | Description | Notes |
|---|---|---|---|
| permissions | List[Permission] | Array of permissions assigned to the role. See Permissions. | [optional] |
from okta.models.permissions import Permissions
# TODO update the JSON string below
json = "{}"
# create an instance of Permissions from a JSON string
permissions_instance = Permissions.from_json(json)
# print the JSON string representation of the object
print(Permissions.to_json())
# convert the object into a dict
permissions_dict = permissions_instance.to_dict()
# create an instance of Permissions from a dict
permissions_from_dict = Permissions.from_dict(permissions_dict)