Skip to main content

AccessItemRequestedForDto

Identity the access item is requested for.

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY' ]DTO type of identity the access item is requested for.[optional]
idstrID of identity the access item is requested for.[optional]
namestrHuman-readable display name of identity the access item is requested for.[optional]
}

Example

from sailpoint.v2024.models.access_item_requested_for_dto import AccessItemRequestedForDto

access_item_requested_for_dto = AccessItemRequestedForDto(
type='IDENTITY',
id='2c4180a46faadee4016fb4e018c20626',
name='Robert Robinson'
)

[Back to top]