export interface IErrorNotification {
    error: {
        message: string;
    };

    id: null;

    result: null;
}