TTPlaceByIdResponse

Objective-C

@interface TTPlaceByIdResponse : NSObject

Swift

class TTPlaceByIdResponse : NSObject

Public Preview

This is under Public Preview and subject to change by the end of 2020.12. More information is available at: https://developer.tomtom.com/public-preview

  • 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 TTPlaceByIdResult.

    Declaration

    Objective-C

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

    Swift

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

    Declaration

    Objective-C

    - (id)HTTPHeaders;

    Swift

    func httpHeaders() -> Any!