interface RawRoadClosure {
    active: boolean;
    closureStatus?: string;
    closureStatusHistory?: RawClosureStatusHistory[];
    createdBy: null | number;
    createdOn: number;
    endDate: null | string;
    eventId: null | string;
    forward: boolean;
    fromNodeClosed: boolean;
    geometry: LineString;
    id: string;
    location?: string;
    permanent: boolean;
    permissions: number;
    provider: null | string;
    reason: null | string;
    segID: number;
    startDate: null | string;
    updatedBy: null | number;
    updatedOn: null | number;
}

Hierarchy (View Summary)

Properties

active: boolean
closureStatus?: string
closureStatusHistory?: RawClosureStatusHistory[]
createdBy: null | number
createdOn: number
endDate: null | string
eventId: null | string
forward: boolean
fromNodeClosed: boolean
geometry: LineString
id: string
location?: string
permanent: boolean
permissions: number
provider: null | string
reason: null | string
segID: number
startDate: null | string
updatedBy: null | number
updatedOn: null | number