Interface AsrTask

interface AsrTask {
    id: string;
    status: "finished" | "processing" | "internal_error" | "transcoding_error" | "recognition_error";
    text: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

id: string

Task ID in UUID format.

status: "finished" | "processing" | "internal_error" | "transcoding_error" | "recognition_error"

Status of the task.

text: string

Recognised text, if task is finished.

Generated using TypeDoc