MBNNRoad.h 875 B

123456789101112131415161718192021222324252627
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. @class MBNNShield;
  4. NS_SWIFT_NAME(Road)
  5. __attribute__((visibility ("default")))
  6. @interface MBNNRoad : 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)initWithText:(nonnull NSString *)text
  12. imageBaseUrl:(nullable NSString *)imageBaseUrl
  13. shield:(nullable MBNNShield *)shield;
  14. @property (nonatomic, readonly, nonnull, copy) NSString *text;
  15. @property (nonatomic, readonly, nullable, copy) NSString *imageBaseUrl;
  16. @property (nonatomic, readonly, nullable) MBNNShield *shield;
  17. - (BOOL)isEqualToRoad:(nonnull MBNNRoad *)other;
  18. @end