Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/CertificationIdentitySummary.md
2025-02-20 12:59:19 -05:00

1.3 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
certification-identity-summary CertificationIdentitySummary CertificationIdentitySummary CertificationIdentitySummary pythonsdk
python
Python
sdk
CertificationIdentitySummary
CertificationIdentitySummary
/tools/sdk/python/v3/models/certification-identity-summary
SDK
Software Development Kit
CertificationIdentitySummary
CertificationIdentitySummary

CertificationIdentitySummary

Properties

Name Type Description Notes
id str The ID of the identity summary [optional]
name str Name of the linked identity [optional]
identity_id str The ID of the identity being certified [optional]
completed bool Indicates whether the review items for the linked identity's certification have been completed [optional]
}

Example

from sailpoint.v3.models.certification_identity_summary import CertificationIdentitySummary

certification_identity_summary = CertificationIdentitySummary(
id='2c91808772a504f50172a9540e501ba7',
name='Alison Ferguso',
identity_id='2c9180857182306001719937377a33de',
completed=True
)

[Back to top]