MBNNADASISv2Message.h 1.1 KB

123456789101112131415161718192021222324252627
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /**
  4. * ADASISv2Message describes a class holding methods for ADASISv2 messages.
  5. * Experimental feature that might change in next releases.
  6. */
  7. NS_SWIFT_NAME(ADASISv2Message)
  8. __attribute__((visibility ("default")))
  9. @interface MBNNADASISv2Message : NSObject
  10. // This class provides custom init which should be called
  11. - (nonnull instancetype)init NS_UNAVAILABLE;
  12. // This class provides custom init which should be called
  13. + (nonnull instancetype)new NS_UNAVAILABLE;
  14. + (nullable MBNNADASISv2Message *)fromBigEndianForBytes:(uint64_t)bytes __attribute((ns_returns_retained));
  15. + (nullable MBNNADASISv2Message *)fromLittleEndianForBytes:(uint64_t)bytes __attribute((ns_returns_retained));
  16. + (nullable MBNNADASISv2Message *)fromJsonForJson:(nonnull NSString *)json __attribute((ns_returns_retained));
  17. - (nonnull NSString *)toJson __attribute((ns_returns_retained));
  18. - (nonnull NSString *)toHex __attribute((ns_returns_retained));
  19. - (uint64_t)toBigEndian;
  20. - (uint64_t)toLittleEndian;
  21. @end