Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

EnterpriseCrmEventbusProtoErrorDetail

import type { EnterpriseCrmEventbusProtoErrorDetail } from "https://googleapis.deno.dev/v1/integrations:v1.ts";

An error, warning, or information message associated with a workflow.

interface EnterpriseCrmEventbusProtoErrorDetail {
errorCode?: CrmlogErrorCode;
errorMessage?: string;
severity?:
| "SEVERITY_UNSPECIFIED"
| "ERROR"
| "WARN"
| "INFO";
taskNumber?: number;
}

§Properties

§

The associated error-code, which can be a common or internal code.

§
errorMessage?: string
[src]

The full text of the error message, including any parameters that were thrown along with the exception.

§
severity?: "SEVERITY_UNSPECIFIED" | "ERROR" | "WARN" | "INFO"
[src]

The severity of the error: ERROR|WARN|INFO.

§
taskNumber?: number
[src]

The task try-number, in which, the error occurred. If zero, the error happened at the event level.