Files
super-app/App/common/interface/analytics/GlobalErrorData.ts
2024-12-05 11:29:28 +00:00

21 lines
558 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;
isNae?: boolean | null;
apiUrl?: string | null;
apiMethod?: string | null;
}