MBNNETCGateInfo.h 876 B

12345678910111213141516171819202122232425262728
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /** Information about passed ETC gates in Japan */
  4. NS_SWIFT_NAME(ETCGateInfo)
  5. __attribute__((visibility ("default")))
  6. @interface MBNNETCGateInfo : 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)initWithId:(uint32_t)id
  12. monotonicTimestampNanoseconds:(int64_t)monotonicTimestampNanoseconds;
  13. /** id of ETC gate */
  14. @property (nonatomic, readonly) uint32_t id;
  15. /** should be in sync with timestamps of locations from location provider */
  16. @property (nonatomic, readonly) int64_t monotonicTimestampNanoseconds;
  17. - (BOOL)isEqualToETCGateInfo:(nonnull MBNNETCGateInfo *)other;
  18. @end