MBMFeatureExtensionValue.h 965 B

123456789101112131415161718192021222324252627
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. @class MBXFeature;
  4. /** A value or a collection of a feature extension. */
  5. NS_SWIFT_NAME(FeatureExtensionValue)
  6. __attribute__((visibility ("default")))
  7. @interface MBMFeatureExtensionValue : NSObject
  8. // This class provides custom init which should be called
  9. - (nonnull instancetype)init NS_UNAVAILABLE;
  10. // This class provides custom init which should be called
  11. + (nonnull instancetype)new NS_UNAVAILABLE;
  12. - (nonnull instancetype)initWithValue:(nullable id)value
  13. featureCollection:(nullable NSArray<MBXFeature *> *)featureCollection NS_REFINED_FOR_SWIFT;
  14. /** An optional value of a feature extension */
  15. @property (nonatomic, readonly, nullable, copy) id value;
  16. /** An optional array of features from a feature extension. */
  17. @property (nonatomic, readonly, nullable, copy) NSArray<MBXFeature *> *featureCollection NS_REFINED_FOR_SWIFT;
  18. @end