Skip to main content

Completeinvocationinput

Properties

NameTypeDescriptionNotes
localized_errorLocalizedmessage[optional]
outputobjectTrigger output that completed the invocation. Its schema is defined in the trigger definition.[optional]
}

Example

from sailpoint.triggers.models.completeinvocationinput import Completeinvocationinput

completeinvocationinput = Completeinvocationinput(
localized_error=sailpoint.triggers.models.localized_message.Localized Message(
locale = 'An error has occurred!',
message = 'Error has occurred!', ),
output={"approved":false}
)

[Back to top]