Skip to main content

LifecycleCommentAuthorReference

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY', 'WORKGROUP', 'API_TOKEN', 'SYSTEM' ]Author category for the comment.[optional]
idstrIdentifier of the comment author.[optional]
namestrDisplay name of the comment author.[optional]
}

Example

from sailpoint.machine_identities_lifecycle_actions.models.lifecycle_comment_author_reference import LifecycleCommentAuthorReference

lifecycle_comment_author_reference = LifecycleCommentAuthorReference(
type='IDENTITY',
id='2c9180858082150f0180893dbaf44201',
name='Pat Manager'
)

[Back to top]