// This file is generated and will be overwritten automatically. #import @class MBMScreenBox; @class MBMScreenCoordinate; // NOLINTNEXTLINE(modernize-use-using) typedef NS_ENUM(NSInteger, MBMRenderedQueryGeometryType) { MBMRenderedQueryGeometryTypeScreenBox, MBMRenderedQueryGeometryTypeScreenCoordinate, MBMRenderedQueryGeometryTypeNSArray } NS_SWIFT_NAME(RenderedQueryGeometryType); /** Geometry for querying rendered features. */ NS_SWIFT_NAME(RenderedQueryGeometry) __attribute__((visibility ("default"))) @interface MBMRenderedQueryGeometry : NSObject - (nonnull instancetype)initWithValue:(nonnull id)value __attribute__((deprecated("Please use: '+from{TypeName}:' instead."))); + (nonnull instancetype)fromScreenBox:(nonnull MBMScreenBox *)value; + (nonnull instancetype)fromScreenCoordinate:(nonnull MBMScreenCoordinate *)value; + (nonnull instancetype)fromNSArray:(nonnull NSArray *)value; - (BOOL)isScreenBox; - (BOOL)isScreenCoordinate; - (BOOL)isNSArray; - (nonnull MBMScreenBox *)getScreenBox __attribute((ns_returns_retained)); - (nonnull MBMScreenCoordinate *)getScreenCoordinate __attribute((ns_returns_retained)); - (nonnull NSArray *)getNSArray __attribute((ns_returns_retained)); @property (nonatomic, nonnull) id value; @property (nonatomic, readonly) MBMRenderedQueryGeometryType type; @end