MVFv3 API Documentation
    Preparing search index...

    Interface IntegrityErrorProperties

    interface IntegrityErrorProperties {
        DuplicateIdError: { id: string; path: string };
        FloorMissingError: null;
        GeometryMissingError: null;
        UnknownFloorError: { floorId: `f_${string}` };
        UnknownGeometryError: { floorId: `f_${string}`; geometryId: `g_${string}` };
    }
    Index

    Properties

    DuplicateIdError: { id: string; path: string }

    Type declaration

    • id: string

      The ID of the item that is duplicated.

    • path: string

      The path to the item that is duplicated.

    FloorMissingError: null
    GeometryMissingError: null
    UnknownFloorError: { floorId: `f_${string}` }

    Type declaration

    • floorId: `f_${string}`

      The ID of the floor that is unknown.

    UnknownGeometryError: { floorId: `f_${string}`; geometryId: `g_${string}` }

    Type declaration

    • floorId: `f_${string}`

      The ID of the floor that the geometry is supposed to belong to.

    • geometryId: `g_${string}`

      The ID of the geometry that is unknown.