2024-03-27 20:36:03 +05:30
|
|
|
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;
|
2024-04-01 18:40:47 +05:30
|
|
|
isAppDowntimeEvent?: boolean | null;
|
2024-03-27 20:36:03 +05:30
|
|
|
}
|