MBNNRouteRefreshObserver.h 659 B

12345678910111213141516
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. @class MBNNRouteRefreshError;
  4. NS_SWIFT_NAME(RouteRefreshObserver)
  5. @protocol MBNNRouteRefreshObserver
  6. - (void)onRouteRefreshAnnotationsUpdatedForId:(uint64_t)id
  7. routeRefreshResponse:(nonnull NSString *)routeRefreshResponse
  8. routeIndex:(uint32_t)routeIndex
  9. legIndex:(uint32_t)legIndex;
  10. - (void)onRouteRefreshCancelledForId:(uint64_t)id;
  11. - (void)onRouteRefreshFailedForId:(uint64_t)id
  12. error:(nonnull MBNNRouteRefreshError *)error;
  13. @end