| 12345678910111213141516171819202122232425262728293031323334 |
- // This file is generated and will be overwritten automatically.
- #import <Foundation/Foundation.h>
- #import <MapboxNavigationNative/MBNNRouterErrorType.h>
- NS_SWIFT_NAME(RouterError)
- __attribute__((visibility ("default")))
- @interface MBNNRouterError : NSObject
- // This class provides custom init which should be called
- - (nonnull instancetype)init NS_UNAVAILABLE;
- // This class provides custom init which should be called
- + (nonnull instancetype)new NS_UNAVAILABLE;
- - (nonnull instancetype)initWithMessage:(nonnull NSString *)message
- code:(uint32_t)code
- type:(MBNNRouterErrorType)type
- requestId:(uint64_t)requestId;
- /** Error message */
- @property (nonatomic, readonly, nonnull, copy) NSString *message;
- /** Error code */
- @property (nonatomic, readonly) uint32_t code;
- /** Error type */
- @property (nonatomic, readonly) MBNNRouterErrorType type;
- /** Request ID */
- @property (nonatomic, readonly) uint64_t requestId;
- @end
|