Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/CompleteInvocationInput.md
2025-02-20 12:59:19 -05:00

1.2 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-complete-invocation-input CompleteInvocationInput CompleteInvocationInput CompleteInvocationInput pythonsdk
python
Python
sdk
CompleteInvocationInput
V2024CompleteInvocationInput
/tools/sdk/python/v2024/models/complete-invocation-input
SDK
Software Development Kit
CompleteInvocationInput
V2024CompleteInvocationInput

CompleteInvocationInput

Properties

Name Type Description Notes
localized_error LocalizedMessage [optional]
output object Trigger 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]