MBXLiveTrackingClientLifecycleMode.h 859 B

123456789101112131415161718192021222324
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. NS_SWIFT_NAME(LiveTrackingClientLifecycleMode)
  4. __attribute__((visibility ("default")))
  5. @interface MBXLiveTrackingClientLifecycleMode : NSObject
  6. /**
  7. * Live tracking client lifecycle mode is unspecified or
  8. * foreground/background granularity is not supported by
  9. * a system.
  10. */
  11. @property (nonatomic, class, readonly) NSString * None;
  12. /** Live tracking client receives location updates only while an app is in use. */
  13. @property (nonatomic, class, readonly) NSString * Foreground;
  14. /**
  15. * Live tracking client receives location updates always,
  16. * even an app isn't running (the system should wake up the
  17. * app to deliver updates)
  18. */
  19. @property (nonatomic, class, readonly) NSString * Background;
  20. @end