Skip to main content

AuditDetails

Audit details for the reassignment configuration of an identity

Properties

NameTypeDescriptionNotes
createddatetimeInitial date and time when the record was created[optional]
created_byIdentity1[optional]
modifieddatetimeLast modified date and time for the record[optional]
modified_byIdentity1[optional]
}

Example

from sailpoint.v2024.models.audit_details import AuditDetails

audit_details = AuditDetails(
created='2022-07-21T11:13:12.345Z',
created_by=sailpoint.v2024.models.identity_1.Identity_1(
id = '2c91808380aa05580180aaaaf1940410',
name = 'William Wilson', ),
modified='2022-07-21T11:13:12.345Z',
modified_by=sailpoint.v2024.models.identity_1.Identity_1(
id = '2c91808380aa05580180aaaaf1940410',
name = 'William Wilson', )
)

[Back to top]