// This file is generated and will be overwritten automatically. #import #import #import NS_SWIFT_NAME(SpeedLimitRestriction) __attribute__((visibility ("default"))) @interface MBNNSpeedLimitRestriction : NSObject // This class provides custom init which should be called - (nonnull instancetype)init NS_UNAVAILABLE; // This class provides custom init which should be called + (nonnull instancetype)new NS_UNAVAILABLE; - (nonnull instancetype)initWithWeather:(nonnull NSArray *)weather dateTimeCondition:(nonnull NSString *)dateTimeCondition vehicleTypes:(nonnull NSArray *)vehicleTypes lanes:(nonnull NSArray *)lanes; /** Weather conditions where the speed limit is applied. Empty means all. */ @property (nonatomic, readonly, nonnull, copy) NSArray *weather; /** OSM openning_hours format, see https://wiki.openstreetmap.org/wiki/Key:opening_hours */ @property (nonatomic, readonly, nonnull, copy) NSString *dateTimeCondition; /** A list of types of vehicles for that the speed limit is included. Empty means all */ @property (nonatomic, readonly, nonnull, copy) NSArray *vehicleTypes; /** Lane numbers where the speed limit is valid. Empty array means all lanes */ @property (nonatomic, readonly, nonnull, copy) NSArray *lanes; - (BOOL)isEqualToSpeedLimitRestriction:(nonnull MBNNSpeedLimitRestriction *)other; @end