MBXLiveTrackingClientMinimumDisplacementCategory.h 876 B

12345678910111213141516171819202122232425
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. NS_SWIFT_NAME(LiveTrackingClientMinimumDisplacementCategory)
  4. __attribute__((visibility ("default")))
  5. @interface MBXLiveTrackingClientMinimumDisplacementCategory : NSObject
  6. /**
  7. * No filter for minimum displacement.
  8. *
  9. * Any change in location should trigger a new location update.
  10. */
  11. @property (nonatomic, class, readonly) NSString * Any;
  12. /**
  13. * Significant displacements only.
  14. *
  15. * You can use this constant to indicate that a new update should be
  16. * triggered only after the device moves a significantly large distance.
  17. * How it's significant is determined by the particular
  18. * platform and, usually, implies it to be power efficient.
  19. */
  20. @property (nonatomic, class, readonly) NSString * Significant;
  21. @end