Skip to main content

ServiceDeskSource

Source for Service Desk integration template.

Properties

NameTypeDescriptionNotes
typeEnum [ 'SOURCE' ]DTO type of source for service desk integration template.[optional]
idstrID of source for service desk integration template.[optional]
namestrHuman-readable name of source for service desk integration template.[optional]
}

Example

from sailpoint.v3.models.service_desk_source import ServiceDeskSource

service_desk_source = ServiceDeskSource(
type='SOURCE',
id='2c9180835d191a86015d28455b4b232a',
name='HR Active Directory'
)

[Back to top]