MBNNRerouteInfo.h 904 B

123456789101112131415161718192021222324
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. #import <MapboxNavigationNative/MBNNRouterOrigin.h>
  4. NS_SWIFT_NAME(RerouteInfo)
  5. __attribute__((visibility ("default")))
  6. @interface MBNNRerouteInfo : NSObject
  7. // This class provides custom init which should be called
  8. - (nonnull instancetype)init NS_UNAVAILABLE;
  9. // This class provides custom init which should be called
  10. + (nonnull instancetype)new NS_UNAVAILABLE;
  11. - (nonnull instancetype)initWithRouteResponse:(nonnull NSString *)routeResponse
  12. routeRequest:(nonnull NSString *)routeRequest
  13. origin:(MBNNRouterOrigin)origin;
  14. @property (nonatomic, readonly, nonnull, copy) NSString *routeResponse;
  15. @property (nonatomic, readonly, nonnull, copy) NSString *routeRequest;
  16. @property (nonatomic, readonly) MBNNRouterOrigin origin;
  17. @end