Type alias OrchestrationProcessResponse

OrchestrationProcessResponse: {
    errorMessage?: string;
    errorStack?: string;
    errorType?: string;
    event: CloudEvent<Record<string, any>>;
    eventToEmit?: CloudEvent<Record<string, any>>;
    success: boolean;
}

Defines the structure of responses from the orchestration router, including event details, operation success status, and error information if applicable.

Type declaration

  • Optional errorMessage?: string

    Error message text

  • Optional errorStack?: string

    Error stack text

  • Optional errorType?: string

    Error type text

  • event: CloudEvent<Record<string, any>>

    The original event

  • Optional eventToEmit?: CloudEvent<Record<string, any>>

    The event to emit after processing

  • success: boolean

    Flag informing on successful execution

Generated using TypeDoc