Tela SDK for JavaScript
    Preparing search index...

    Type Alias WorkflowExecutionPollingResult<TOutput>

    Result returned when polling for workflow execution status.

    The type of the output content.

    type WorkflowExecutionPollingResult<TOutput> = {
        createdAt: string;
        creditsUsed: number;
        deletedAt: any;
        id: string;
        outputContent: {
            id: string;
            output: { error: any; id: string; name: string; output: TOutput };
        };
        promptApplicationId: any;
        promptId: string;
        promptVersionId: string;
        status: string;
        tags: any[];
        updatedAt: string;
        workspaceId: string;
    }

    Type Parameters

    • TOutput
    Index

    Properties

    createdAt: string
    creditsUsed: number
    deletedAt: any
    id: string
    outputContent: {
        id: string;
        output: { error: any; id: string; name: string; output: TOutput };
    }
    promptApplicationId: any
    promptId: string
    promptVersionId: string
    status: string
    tags: any[]
    updatedAt: string
    workspaceId: string