Configtype
Type of Reassignment Configuration.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| priority | int | [optional] | |
| internal_name | Configtypeenumcamel | [optional] | |
| internal_name_camel | Configtypeenum | [optional] | |
| display_name | str | Human readable display name of the type to be shown on UI | [optional] |
| description | str | Description of the type of work to be reassigned, displayed by the UI. | [optional] |
| } |
Example
from sailpoint.work_reassignment.models.configtype import Configtype
configtype = Configtype(
priority=1,
internal_name='accessRequests',
internal_name_camel='ACCESS_REQUESTS',
display_name='Access Requests',
description='Reassign Access Request Work Items for an identity'
)