Waze Map Editor JavaScript SDK
    Preparing search index...

    Type Alias SegmentRestrictionData

    SegmentRestrictionData: Omit<
        SegmentRestriction,
        | "editable"
        | "isExpired"
        | "laneScope"
        | "timeFrames"
        | "vehicleRules"
        | "defaultType"
        | "disposition"
        | "driveProfiles"
        | "direction",
    > & {
        defaultType: UpdateableRestrictionType;
        direction: RestrictionSegmentDirection;
        laneScope: UpdateableRestrictionSegmentLaneScope;
        timeFrames?: Omit<TimeFrame, "daysOfMonth">[];
        vehicleRules: AddableVehicleRules;
    }

    Represents restriction data applied when updating segment restrictions.