Skip to main content

SourceSubtype

Properties

NameTypeDescriptionNotes
idstrUnique identifier for the subtype.[optional]
source_idstrThe ID of the source.[optional] [readonly]
technical_namestrTechnical name of the subtype.[required]
display_namestrDisplay name of the subtype.[required]
descriptionstrDescription of the subtype.[required]
createddatetimeCreation timestamp.[optional]
modifieddatetimeLast modified timestamp.[optional]
}

Example

from sailpoint.v2025.models.source_subtype import SourceSubtype

source_subtype = SourceSubtype(
id='43bdd144-4b17-4fce-a744-17c7fd3e717b',
source_id='',
technical_name='foo',
display_name='Mr Foo',
description='fighters',
created='2025-07-28T16:13:42.801300Z',
modified='2025-07-28T16:13:42.750850Z'
)

[Back to top]