Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/IdentitySummary.md
2025-04-01 09:23:12 -04:00

1.1 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-identity-summary IdentitySummary IdentitySummary IdentitySummary pythonsdk
python
Python
sdk
IdentitySummary
V2025IdentitySummary
/tools/sdk/python/v2025/models/identity-summary
SDK
Software Development Kit
IdentitySummary
V2025IdentitySummary

IdentitySummary

Properties

Name Type Description Notes
id str ID of this identity summary [optional]
name str Human-readable display name of identity [optional]
identity_id str ID of the identity that this summary represents [optional]
completed bool Indicates if all access items for this summary have been decided on [optional] [default to False]
}

Example

from sailpoint.v2025.models.identity_summary import IdentitySummary

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

[Back to top]