Details of the transcription error.

interface Error {
    code?: string;
    message?: string;
    param?: string;
    type?: string;
}

Properties

code?: string

Error code, if any.

message?: string

A human-readable error message.

param?: string

Parameter related to the error, if any.

type?: string

The type of error.