MBNNBannerSection.h 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. @class MBNNBannerComponent;
  4. NS_SWIFT_NAME(BannerSection)
  5. __attribute__((visibility ("default")))
  6. @interface MBNNBannerSection : 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. type:(nullable NSString *)type
  13. modifier:(nullable NSString *)modifier
  14. degrees:(nullable NSNumber *)degrees
  15. drivingSide:(nullable NSString *)drivingSide
  16. components:(nullable NSArray<MBNNBannerComponent *> *)components;
  17. @property (nonatomic, readonly, nonnull, copy) NSString *text;
  18. @property (nonatomic, readonly, nullable, copy) NSString *type;
  19. @property (nonatomic, readonly, nullable, copy) NSString *modifier;
  20. @property (nonatomic, readonly, nullable) NSNumber *degrees;
  21. @property (nonatomic, readonly, nullable, copy) NSString *drivingSide;
  22. @property (nonatomic, readonly, nullable, copy) NSArray<MBNNBannerComponent *> *components;
  23. @end