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.v2024.models.complete_invocation_input import CompleteInvocationInput

complete_invocation_input = CompleteInvocationInput(
localized_error=sailpoint.v2024.models.localized_message.LocalizedMessage(
locale = 'An error has occurred!',
message = 'Error has occurred!', ),
output={approved=false}
)

[Back to top]