TTSearchResponse

@interface TTSearchResponse : NSObject

TTSearchResponse

  • The summary of the response type TTSearchSummary.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) TTSearchSummary *_Nonnull summary;

    Swift

    var summary: TTSearchSummary { get }
  • The results of the response type TTSearchResult.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly)
        NSArray<TTSearchResult *> *_Nonnull results;

    Swift

    var results: [TTSearchResult] { get }
  • Response HTTP headers.

    Declaration

    Objective-C

    - (id)HTTPHeaders;

    Swift

    func httpHeaders() -> Any!