MBNNRoutesData.h 575 B

12345678910111213141516
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. @class MBNNRouteAlternative;
  4. @protocol MBNNRouteInterface;
  5. /**
  6. * RoutesData interface provide ability to get RouteAlternative metadata based on the primary route and list of alternative rotues.
  7. * Instance of this interface can be created using `RouteParser#createRoutesData` and set in `Navigator`.
  8. */
  9. NS_SWIFT_NAME(RoutesData)
  10. @protocol MBNNRoutesData
  11. - (nonnull id<MBNNRouteInterface>)primaryRoute;
  12. - (nonnull NSArray<MBNNRouteAlternative *> *)alternativeRoutes;
  13. @end