Interface Location

Describes the location of some object.

interface Location {
    building?: string;
    code: string;
    entity: string;
    room?: string;
}

Properties

building?: string

Name or code of the building @TJS-examples ["I17", "Main building"]

code: string

Internal code that is used to identify the location @TJS-examples ["I17 1 B3"]

entity: string

Name of the institution @TJS-examples ["EPFL", "Heriot-Watt University"]

room?: string

Name or code of the room in which the object is localized @TJS-examples ["1 B3", "Lab 1"]