Skip to main content

IdentitySummary

Properties

NameTypeDescriptionNotes
idstrID of this identity summary[optional]
namestrHuman-readable display name of identity[optional]
identity_idstrID of the identity that this summary represents[optional]
completedboolIndicates if all access items for this summary have been decided on[optional] [default to False]
}

Example

from sailpoint.v3.models.identity_summary import IdentitySummary

identity_summary = IdentitySummary(
id='ff80818155fe8c080155fe8d925b0316',
name='SailPoint Services',
identity_id='c15b9f5cca5a4e9599eaa0e64fa921bd',
completed=True
)

[Back to top]