Skip to main content

Servicedeskintegrationtemplatetype

This represents a Service Desk Integration template type.

Properties

NameTypeDescriptionNotes
namestrThis is the name of the type.[optional]
typestrThis is the type value for the type.[required]
script_namestrThis is the scriptName attribute value for the type.[required]
}

Example

from sailpoint.service_desk_integration.models.servicedeskintegrationtemplatetype import Servicedeskintegrationtemplatetype

servicedeskintegrationtemplatetype = Servicedeskintegrationtemplatetype(
name='aName',
type='aType',
script_name='aScriptName'
)

[Back to top]