interface RawDrivingRestriction {
    defaultType: RESTRICTION_TYPE;
    description: null | string;
    disposition?: RESTRICTION_SEGMENT_DISPOSITION;
    driveProfiles: {
        BLOCKED?: RawDriveProfile[];
        DANGEROUS_AREA?: RawDriveProfile[];
        DIFFICULT?: RawDriveProfile[];
        ENTER_ONLY?: RawDriveProfile[];
        FREE?: RawDriveProfile[];
        PENALTY?: RawDriveProfile[];
        TOLL?: RawDriveProfile[];
    };
    editable: boolean;
    laneType?: null
    | RESTRICTION_SEGMENT_LANE_TYPE;
    timeFrames: RawTimeFrame[];
}

Hierarchy (View Summary)

Properties

defaultType: RESTRICTION_TYPE
description: null | string
driveProfiles: {
    BLOCKED?: RawDriveProfile[];
    DANGEROUS_AREA?: RawDriveProfile[];
    DIFFICULT?: RawDriveProfile[];
    ENTER_ONLY?: RawDriveProfile[];
    FREE?: RawDriveProfile[];
    PENALTY?: RawDriveProfile[];
    TOLL?: RawDriveProfile[];
}
editable: boolean
timeFrames: RawTimeFrame[]