MBNNRoutingMode.h 602 B

12345678910111213141516171819
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. // NOLINTNEXTLINE(modernize-use-using)
  4. typedef NS_ENUM(NSInteger, MBNNRoutingMode)
  5. {
  6. /** For car and motorcycle routing. */
  7. MBNNRoutingModeDriving,
  8. /** For pedestrian and hiking routing. */
  9. MBNNRoutingModeWalking,
  10. /** For bicycle routing. */
  11. MBNNRoutingModeCycling,
  12. /**
  13. * For car and motorcycle routing. This profile factors in current and historic
  14. * traffic conditions to avoid slowdowns.
  15. */
  16. MBNNRoutingModeDrivingTraffic
  17. } NS_SWIFT_NAME(RoutingMode);