// This file is generated and will be overwritten automatically. #import #import @class MBNNAmenity; NS_SWIFT_NAME(ServiceAreaInfo) __attribute__((visibility ("default"))) @interface MBNNServiceAreaInfo : 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:(MBNNServiceAreaType)type name:(nullable NSString *)name amenities:(nonnull NSArray *)amenities guideMapUri:(nullable NSString *)guideMapUri; /** type of service area */ @property (nonatomic, readonly) MBNNServiceAreaType type; /** name of the service area */ @property (nonatomic, readonly, nullable, copy) NSString *name; /** array of amenities */ @property (nonatomic, readonly, nonnull, copy) NSArray *amenities; /** URI to guide map image. To use it you must add an access token */ @property (nonatomic, readonly, nullable, copy) NSString *guideMapUri; @end