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.beta.models.config_type import ConfigType

config_type = 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]