MBNNAlertsServiceOptions.h 1.2 KB

123456789101112131415161718192021222324252627282930
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /**
  4. * Alerts service extracts information from the road graph and helps track it
  5. * through eHorizon. Options control how we do it and what objects we collect.
  6. *
  7. * Some objects take significant effort to extract and thus developers should
  8. * have a choice not to pay this overhead if they don't need ot use these objects.
  9. */
  10. NS_SWIFT_NAME(AlertsServiceOptions)
  11. __attribute__((visibility ("default")))
  12. @interface MBNNAlertsServiceOptions : NSObject
  13. // This class provides custom init which should be called
  14. - (nonnull instancetype)init NS_UNAVAILABLE;
  15. // This class provides custom init which should be called
  16. + (nonnull instancetype)new NS_UNAVAILABLE;
  17. - (nonnull instancetype)initWithCollectTunnels:(nullable NSNumber *)collectTunnels
  18. collectBridges:(nullable NSNumber *)collectBridges
  19. collectRestrictedAreas:(nullable NSNumber *)collectRestrictedAreas;
  20. @property (nonatomic, readonly, nullable) NSNumber *collectTunnels;
  21. @property (nonatomic, readonly, nullable) NSNumber *collectBridges;
  22. @property (nonatomic, readonly, nullable) NSNumber *collectRestrictedAreas;
  23. @end