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

13 lines
326 B
TypeScript

interface AppDowntimeData {
reason?: string | null;
screenName?: string | null;
moduleName?: string | null;
statusCode?: number | null;
networkType?: string | null;
flowName?: string | null;
methodName?: string | null;
vendorName?: string | null;
extras?: Map<string, string> | null;
eventName?: string;
}