Skip to main content

Reviewer

Properties

NameTypeDescriptionNotes
idstrThe id of the reviewer.[optional]
namestrThe name of the reviewer.[optional]
emailstrThe email of the reviewing identity.[optional]
typeEnum [ 'IDENTITY' ]The type of the reviewing identity.[optional]
createddatetimeThe created date of the reviewing identity.[optional]
modifieddatetimeThe modified date of the reviewing identity.[optional]
}

Example

from sailpoint.v3.models.reviewer import Reviewer

reviewer = Reviewer(
id='ef38f94347e94562b5bb8424a56397d8',
name='Reviewer Name',
email='[email protected]',
type='IDENTITY',
created='2018-06-25T20:22:28.104Z',
modified='2018-06-25T20:22:28.104Z'
)

[Back to top]