MBXLiveTrackingClientAccuracyCategory.h 1.1 KB

1234567891011121314151617181920212223242526
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. NS_SWIFT_NAME(LiveTrackingClientAccuracyCategory)
  4. __attribute__((visibility ("default")))
  5. @interface MBXLiveTrackingClientAccuracyCategory : NSObject
  6. /**
  7. * The highest possible accuracy requirement that uses additional
  8. * sensors (if possible) to facilitate navigation use case.
  9. */
  10. @property (nonatomic, class, readonly) NSString * ExtraHigh;
  11. /** High accuracy requirement. */
  12. @property (nonatomic, class, readonly) NSString * High;
  13. /** Medium accuracy requirement (typically between 100 and 500 meters). */
  14. @property (nonatomic, class, readonly) NSString * Medium;
  15. /** Low accuracy requirement (typically greater than 500 meters). */
  16. @property (nonatomic, class, readonly) NSString * Low;
  17. /**
  18. * Passive only accuracy request, not triggers any active locations or power usage itself,
  19. * but may receive locations generated in response to other requests.
  20. */
  21. @property (nonatomic, class, readonly) NSString * Passive;
  22. @end