| 123456789101112131415161718192021222324252627282930 |
- // This file is generated and will be overwritten automatically.
- #import <Foundation/Foundation.h>
- #import <MapboxNavigationNative/MBNNAmenityType.h>
- NS_SWIFT_NAME(Amenity)
- __attribute__((visibility ("default")))
- @interface MBNNAmenity : 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:(MBNNAmenityType)type
- name:(nullable NSString *)name
- brand:(nullable NSString *)brand;
- /** type of amenity */
- @property (nonatomic, readonly) MBNNAmenityType type;
- /** name of amenity */
- @property (nonatomic, readonly, nullable, copy) NSString *name;
- /** brand name of amenity */
- @property (nonatomic, readonly, nullable, copy) NSString *brand;
- @end
|