interface SaveErrorViewModelAttributes {
    code: SaveErrorCode;
    collatedCount: null | number;
    description: null | string;
    details: null | string;
    geometry: null | Point;
    ignorable: boolean;
    objects: null | RawSaveErrorObject[];
}

Properties

collatedCount: null | number
description: null | string
details: null | string
geometry: null | Point
ignorable: boolean
objects: null | RawSaveErrorObject[]