Interface InfoErrorNotification

Error notification. Emitted for recoverable errors in background tasks.

interface InfoErrorNotification {
    backtest: boolean;
    error: object;
    id: string;
    message: string;
    timestamp: number;
    type: "error.info";
}

Properties

backtest: boolean
error: object
id: string
message: string
timestamp: number
type: "error.info"