MBNNSetRoutesResult.h 842 B

1234567891011121314151617181920212223242526
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. @class MBNNRouteAlternative;
  4. NS_SWIFT_NAME(SetRoutesResult)
  5. __attribute__((visibility ("default")))
  6. @interface MBNNSetRoutesResult : 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)initWithAlternatives:(nonnull NSArray<MBNNRouteAlternative *> *)alternatives;
  12. /**
  13. * Additional information about alternative routes relative to the primary route.
  14. * Routes in the array will be in the same order as in the `SetRoutesParams.alternativeRoutes`.
  15. */
  16. @property (nonatomic, readonly, nonnull, copy) NSArray<MBNNRouteAlternative *> *alternatives;
  17. @end