| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- // This file is generated and will be overwritten automatically.
- #import <Foundation/Foundation.h>
- #import <MapboxNavigationNative/MBNNBannerComponentSubType.h>
- @class MBNNShield;
- NS_SWIFT_NAME(BannerComponent)
- __attribute__((visibility ("default")))
- @interface MBNNBannerComponent : NSObject
- // This class provides custom init which should be called
- - (nonnull instancetype)init NS_UNAVAILABLE;
- // This class provides custom init which should be called
- + (nonnull instancetype)new NS_UNAVAILABLE;
- - (nonnull instancetype)initWithType:(nonnull NSString *)type
- text:(nonnull NSString *)text
- abbr:(nullable NSString *)abbr
- abbrPriority:(nullable NSNumber *)abbrPriority
- imageBaseUrl:(nullable NSString *)imageBaseUrl
- active:(nullable NSNumber *)active
- directions:(nullable NSArray<NSString *> *)directions
- activeDirection:(nullable NSString *)activeDirection
- imageURL:(nullable NSString *)imageURL
- subType:(nullable NSNumber *)subType
- shield:(nullable MBNNShield *)shield;
- @property (nonatomic, readonly, nonnull, copy) NSString *type;
- @property (nonatomic, readonly, nonnull, copy) NSString *text;
- @property (nonatomic, readonly, nullable, copy) NSString *abbr;
- @property (nonatomic, readonly, nullable) NSNumber *abbrPriority;
- @property (nonatomic, readonly, nullable, copy) NSString *imageBaseUrl;
- @property (nonatomic, readonly, nullable) NSNumber *active;
- @property (nonatomic, readonly, nullable, copy) NSArray<NSString *> *directions;
- @property (nonatomic, readonly, nullable, copy) NSString *activeDirection;
- /** The full url for a guidance view image */
- @property (nonatomic, readonly, nullable, copy) NSString *imageURL;
- /** Provides more context about the component guidance view that may help in visual markup and display choices. */
- @property (nonatomic, readonly, nullable) NSNumber *subType;
- /** Provides shield info for type=icon */
- @property (nonatomic, readonly, nullable) MBNNShield *shield;
- @end
|