Files
super-app/App/common/interface/analytics/GlobalErrorData.ts
Prajjaval Verma 0cc95f8027 NTP-8444 | NAP Phase 2 | OE for GI (#13693)
Co-authored-by: shrihari-raju_navi <shrihari.raju@navi.com>
Co-authored-by: Kshitij Pramod Ghongadi <kshitij.pramod@navi.com>
2024-11-20 16:37:33 +00:00

18 lines
477 B
TypeScript

interface GlobalErrorData {
reason?: string | null;
source?: string | null;
moduleName: string;
globalErrorType: string;
statusCode?: number | null;
networkType?: string | null;
flowName?: string | null;
methodName?: string | null;
vendorName?: string | null;
extras?: Map<string, string> | null;
journeySource?: string | null;
isAppDowntimeEvent?: boolean | null;
latency?: number | null;
errorCode?: string | null;
errorTitle?: string | null;
}