export interface ApiError {
    status?: number;
    errorCode?: string;
    message?: string;
    errorType?: string;
    pspReference?: string;
    detail?: string;
    instance?: string;
    invalidFields?: Array<string>;
    requestId?: string;
    title?: string;
    type?: string;
}
