| Name | Type | Description | Notes |
|---|---|---|---|
| assignment_type | RoleAssignmentType | [optional] | |
| created | datetime | [optional] [readonly] | |
| description | str | [optional] | |
| id | str | [optional] [readonly] | |
| label | str | [optional] [readonly] | |
| last_updated | datetime | [optional] [readonly] | |
| status | LifecycleStatus | [optional] | |
| type | RoleType | [optional] | |
| embedded | Dict[str, object] | [optional] [readonly] | |
| links | LinksSelf | [optional] |
from okta.models.role import Role
# TODO update the JSON string below
json = "{}"
# create an instance of Role from a JSON string
role_instance = Role.from_json(json)
# print the JSON string representation of the object
print(Role.to_json())
# convert the object into a dict
role_dict = role_instance.to_dict()
# create an instance of Role from a dict
role_from_dict = Role.from_dict(role_dict)