export interface ApiException { code: number; message: string; exceptionType: ApiExceptionType; translationKey?: string; body?: any; } export enum ApiExceptionType { Default, UserDecision }