MBNNVoiceInstruction.h 1020 B

123456789101112131415161718192021222324252627
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. NS_SWIFT_NAME(VoiceInstruction)
  4. __attribute__((visibility ("default")))
  5. @interface MBNNVoiceInstruction : NSObject
  6. // This class provides custom init which should be called
  7. - (nonnull instancetype)init NS_UNAVAILABLE;
  8. // This class provides custom init which should be called
  9. + (nonnull instancetype)new NS_UNAVAILABLE;
  10. - (nonnull instancetype)initWithSsmlAnnouncement:(nonnull NSString *)ssmlAnnouncement
  11. announcement:(nonnull NSString *)announcement
  12. remainingStepDistance:(float)remainingStepDistance
  13. index:(uint32_t)index;
  14. @property (nonatomic, readonly, nonnull, copy) NSString *ssmlAnnouncement;
  15. @property (nonatomic, readonly, nonnull, copy) NSString *announcement;
  16. @property (nonatomic, readonly) float remainingStepDistance;
  17. /** index in step */
  18. @property (nonatomic, readonly) uint32_t index;
  19. @end