Skip to main content

Configtype

Type of Reassignment Configuration.

Properties

NameTypeDescriptionNotes
priorityint[optional]
internal_nameConfigtypeenumcamel[optional]
internal_name_camelConfigtypeenum[optional]
display_namestrHuman readable display name of the type to be shown on UI[optional]
descriptionstrDescription 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'
)

[Back to top]