MBNNManufacturerData.h 777 B

123456789101112131415161718192021222324252627
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. NS_SWIFT_NAME(ManufacturerData)
  4. __attribute__((visibility ("default")))
  5. @interface MBNNManufacturerData : 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)initWithId:(int32_t)id
  11. data:(nonnull NSData *)data;
  12. /** manufacturer identifier */
  13. @property (nonatomic, readonly) int32_t id;
  14. /** manufacturer specific data */
  15. @property (nonatomic, readonly, nonnull) NSData *data;
  16. - (BOOL)isEqualToManufacturerData:(nonnull MBNNManufacturerData *)other;
  17. @end