Skip to main content

OwnerReferenceDto

Simplified DTO for the owner object of the entitlement

Properties

NameTypeDescriptionNotes
idstrThe owner id for the entitlement[optional]
namestrThe owner name for the entitlement[optional]
typeEnum [ 'IDENTITY' ]The type of the owner. Initially only type IDENTITY is supported[optional]
}

Example

from sailpoint.beta.models.owner_reference_dto import OwnerReferenceDto

owner_reference_dto = OwnerReferenceDto(
id='2a2fdacca5e345f18bf7970cfbb8fec2',
name='identity 1',
type='IDENTITY'
)

[Back to top]