MBNNRerouteError.h 806 B

123456789101112131415161718192021222324
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. #import <MapboxNavigationNative/MBNNRerouteErrorType.h>
  4. NS_SWIFT_NAME(RerouteError)
  5. __attribute__((visibility ("default")))
  6. @interface MBNNRerouteError : 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)initWithMessage:(nonnull NSString *)message
  12. type:(MBNNRerouteErrorType)type;
  13. @property (nonatomic, readonly, nonnull, copy) NSString *message;
  14. @property (nonatomic, readonly) MBNNRerouteErrorType type;
  15. - (BOOL)isEqualToRerouteError:(nonnull MBNNRerouteError *)other;
  16. @end