Skip to main content

Ownerreferencesegments

The owner of this object.

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY' ]Owner type. This field must be either left null or set to 'IDENTITY' on input, otherwise a 400 Bad Request error will result.[optional]
idstrIdentity id[optional]
namestrHuman-readable display name of the owner. It may be left null or omitted in a POST or PATCH. If set, it must match the current value of the owner's display name, otherwise a 400 Bad Request error will result.[optional]
}

Example

from sailpoint.segments.models.ownerreferencesegments import Ownerreferencesegments

ownerreferencesegments = Ownerreferencesegments(
type='IDENTITY',
id='2c9180a46faadee4016fb4e018c20639',
name='support'
)

[Back to top]