TTSearchSummary

@interface TTSearchSummary : NSObject

TTSearchSummary

  • The query this is a response to.

    Declaration

    Objective-C

    @property (readonly, strong, nonatomic) NSString *_Nullable query;

    Swift

    var query: String? { get }
  • The type of the query.

    Declaration

    Objective-C

    @property (readonly, strong, nonatomic) NSString *_Nullable queryType;

    Swift

    var queryType: String? { get }
  • The time the query took to execute.

    Declaration

    Objective-C

    @property (readonly, assign, nonatomic) int queryTime;

    Swift

    var queryTime: Int32 { get }
  • The number of results

    Declaration

    Objective-C

    @property (readonly, assign, nonatomic) int numResults;

    Swift

    var numResults: Int32 { get }
  • Start index of returned results for query

    Declaration

    Objective-C

    @property (readonly, assign, nonatomic) int offset;

    Swift

    var offset: Int32 { get }
  • Number of total results available for given query

    Declaration

    Objective-C

    @property (readonly, assign, nonatomic) int totalResults;

    Swift

    var totalResults: Int32 { get }
  • The fuzzy search level

    Declaration

    Objective-C

    @property (readonly, assign, nonatomic) int fuzzyLevel;

    Swift

    var fuzzyLevel: Int32 { get }