MQSearchAheadResponse
@interface MQSearchAheadResponse : NSObject
The response object that is returned from a search request.
-
Feedback object returned when
includesFeedback
is set in the MQSearchAheadOptions classDeclaration
Objective-C
@property (assign, readwrite, nonatomic, nullable) MQSearchAheadFeedback *feedback;
Swift
var feedback: MQSearchAheadFeedback? { get set }
-
An array of search results
Declaration
Objective-C
@property (assign, readwrite, nonatomic, nullable) NSArray<MQSearchAheadResult *> *results;
Swift
var results: [MQSearchAheadResult]? { get set }