MBNNRouterOrigin.h 486 B

123456789101112131415
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /** Describes which kind of router presents response */
  4. // NOLINTNEXTLINE(modernize-use-using)
  5. typedef NS_ENUM(NSInteger, MBNNRouterOrigin)
  6. {
  7. /** Router based on Directions API. */
  8. MBNNRouterOriginOnline,
  9. /** Router based on offline library. */
  10. MBNNRouterOriginOnboard,
  11. /** Router presented by customer. */
  12. MBNNRouterOriginCustom
  13. } NS_SWIFT_NAME(RouterOrigin);