interface TurnRestrictionAttributes {
    defaultType?: null | RESTRICTION_TYPE;
    description?: null | string;
    direction?: null | RESTRICTION_SEGMENT_DIRECTION;
    disposition?: null | RESTRICTION_SEGMENT_DISPOSITION;
    driveProfiles?: {
        BLOCKED?: DriveProfileAttributes[];
        DANGEROUS_AREA?: DriveProfileAttributes[];
        DIFFICULT?: DriveProfileAttributes[];
        ENTER_ONLY?: DriveProfileAttributes[];
        FREE?: DriveProfileAttributes[];
        PENALTY?: DriveProfileAttributes[];
        TOLL?: DriveProfileAttributes[];
    };
    editable?: boolean;
    laneType?: null
    | RESTRICTION_SEGMENT_LANE_TYPE;
    timeFrames?: TimeFrameAttributes[];
}

Hierarchy (View Summary)

Properties

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