Skip to main content

SourceOwner

Reference to identity object who owns the source.

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY' ]Type of object being referenced.[optional]
idstrOwner identity's ID.[optional]
namestrOwner identity's human-readable display name.[optional]
}

Example

from sailpoint.v2024.models.source_owner import SourceOwner

source_owner = SourceOwner(
type='IDENTITY',
id='2c91808568c529c60168cca6f90c1313',
name='MyName'
)

[Back to top]