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

1.8 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
v2024-identity-certified IdentityCertified IdentityCertified IdentityCertified pythonsdk
python
Python
sdk
IdentityCertified
V2024IdentityCertified
/tools/sdk/python/v2024/models/identity-certified
SDK
Software Development Kit
IdentityCertified
V2024IdentityCertified

IdentityCertified

Properties

Name Type Description Notes
certification_id str the id of the certification item [optional]
certification_name str the certification item name [optional]
signed_date str the date ceritification was signed [optional]
certifiers []CertifierResponse this field is deprecated and may go away [optional]
reviewers []CertifierResponse The list of identities who review this certification [optional]
signer CertifierResponse [optional]
event_type str the event type [optional]
dt str the date of event [optional]
}

Example

from sailpoint.v2024.models.identity_certified import IdentityCertified

identity_certified = IdentityCertified(
certification_id='2c91808a77ff216301782327a50f09bf',
certification_name='Cert name',
signed_date='2019-03-08T22:37:33.901Z',
certifiers=[{id=8a80828f643d484f01643e14202e206f, displayName=John Snow}],
reviewers=[{id=8a80828f643d484f01643e14202e206f, displayName=John Snow}],
signer=sailpoint.v2024.models.certifier_response.CertifierResponse(
                    id = '8a80828f643d484f01643e14202e206f', 
                    display_name = 'John Snow', ),
event_type='IdentityCertified',
dt='2019-03-08T22:37:33.901Z'
)

[Back to top]