Files
super-app/App/common/interface/analytics/GlobalErrorData.ts
2024-03-27 15:06:03 +00:00

13 lines
375 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;
}