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.v3.models.service_desk_integration_template_type import ServiceDeskIntegrationTemplateType

service_desk_integration_template_type = ServiceDeskIntegrationTemplateType(
name='aName',
type='aType',
script_name='aScriptName'
)

[Back to top]