From:  `__attribute__ ((deprecated)) extern NSString * _Nonnull const TTReverseGeocoderAttributeBuildingNumber`
To:  `__attribute__((deprecated)) extern NSString *_Nonnull const TTReverseGeocoderAttributeBuildingNumber`
From:  `__attribute__ ((deprecated)) extern NSString * _Nonnull const TTReverseGeocoderAttributeCountrySubdivision`
To:  `__attribute__((deprecated)) extern NSString *_Nonnull const TTReverseGeocoderAttributeCountrySubdivision`
From:  `__attribute__ ((deprecated)) extern NSString * _Nonnull const TTReverseGeocoderAttributeCountry`
To:  `__attribute__((deprecated)) extern NSString *_Nonnull const TTReverseGeocoderAttributeCountry`
From:  `- (TTGeometrySearchQueryBuilder* _Nonnull)withExtendedPostalCodeFor:(TTSearchIndex)index;`
To:  `- (TTGeometrySearchQueryBuilder *_Nonnull)withExtendedPostalCodeFor:(TTSearchIndex)index;`
From:  `- (TTGeometrySearchQuery* _Nonnull)build;`
To:  `- (TTGeometrySearchQuery *_Nonnull)build;`
From:  `- (TTGeometrySearchQueryBuilder* _Nonnull)withLimit:(NSUInteger)limit;`
To:  `- (TTGeometrySearchQueryBuilder *_Nonnull)withLimit:(NSUInteger)limit;`
From:  `- (TTGeometrySearchQueryBuilder* _Nonnull)withIdxSet:(TTSearchIndex)index;`
To:  `- (TTGeometrySearchQueryBuilder *_Nonnull)withIdxSet:(TTSearchIndex)index;`
From:  `+ (TTGeometrySearchQueryBuilder* _Nonnull)createWithTerm:(NSString * _Nonnull)term searchShapes:(NSArray<TTSearchShape*>* _Nonnull)shapes;`
To:  `+ (TTGeometrySearchQueryBuilder *_Nonnull)createWithTerm:(NSString *_Nonnull)term searchShapes:(NSArray<TTSearchShape *> *_Nonnull)shapes;`
From:  `@property (nonatomic, readonly, strong) TTGeometryDataSource* _Nullable geometryDataSource`
To:  `@property(nonatomic, readonly, strong) TTGeometryDataSource *_Nullable geometryDataSource`
From:  `@protocol TTBatchVisistor <NSObject>  @optional  /**  Called when batch returns TTSearchResponse   @param response TTSearchResponse  */ - (void)visitSearch:(TTSearchResponse* _Nonnull)response;  /**  Called when batch returns TTGeometrySearchResponse    @param response TTGeometrySearchResponse  */ - (void)visitGeometrySearch:(TTGeometrySearchResponse* _Nonnull)response;  /**  Called when batch returns TTReverseGeocoderResponse    @param response TTReverseGeocoderResponse  */ - (void)visitReverseGeocoderSearch:(TTReverseGeocoderResponse* _Nonnull)response;  @end`
To:  `@protocol TTBatchVisistor <NSObject>`
From:  `@protocol TTBatchSearchDelegate <NSObject>  @optional  /**  Method responsible to handle batch search response when batch returns results. Within this callback user will obtain Response that can be visited by corresponding responses.   @param batch TTBatchSearch  @param response TTBatchResponse  */ - (void)batch:(TTBatchSearch* _Nonnull)batch completedWithResponse:(TTBatchResponse* _Nonnull)response;  /**  Method responsible to handle batch search response when search returns error. Within this callback user will obtain Throwable fail reason   @param batch TTBatchSearch  @param error TTResponseError  */ - (void)batch:(TTBatchSearch* _Nonnull)batch failedWithError:(TTResponseError* _Nonnull)error;  @end`
To:  `@protocol TTBatchSearchDelegate <NSObject>`
From:  `@property (nonatomic, readonly, strong) TTSearchSummary* _Nonnull summary`
To:  `@property(nonatomic, readonly, strong) TTSearchSummary *_Nonnull summary`
From:  `class TTAlongRouteSearchQuery : NSObject`
To:  `class TTAlongRouteSearchQuery`
From:  `@property (nonatomic, readonly, strong) TTAddressRanges * _Nullable addressRanges`
To:  `@property(nonatomic, readonly, strong) TTAddressRanges *_Nullable addressRanges`
From:  `@property (nonatomic, readonly, strong) TTPoi * _Nullable poi`
To:  `@property(nonatomic, readonly, strong) TTPoi *_Nullable poi`
From:  `@property (nonatomic, readonly, strong) TTAdditionalDataSources * _Nullable additionalDataSources`
To:  `@property(nonatomic, readonly, strong) TTAdditionalDataSources *_Nullable additionalDataSources`
From:  `@property (nonatomic, readonly, strong) TTBoundingBox * _Nonnull viewport`
To:  `@property(nonatomic, readonly, strong) TTBoundingBox *_Nonnull viewport`
From:  `@property (nonatomic, readonly, strong) TTBoundingBox * _Nullable boundingbox`
To:  `@property(nonatomic, readonly, strong) TTBoundingBox *_Nullable boundingbox`
From:  `@property (nonatomic, readonly, strong) TTAddress * _Nonnull address`
To:  `@property(nonatomic, readonly, strong) TTAddress *_Nonnull address`
From:  `__attribute__ ((deprecated)) extern NSString * _Nonnull const TTReverseGeocoderAttributeStreetName`
To:  `__attribute__((deprecated)) extern NSString *_Nonnull const TTReverseGeocoderAttributeStreetName`
From:  `class TTAdditionalDataSearchQuery : NSObject`
To:  `class TTAdditionalDataSearchQuery`
From:  `@protocol TTAdditionalDataSearchDelegate <NSObject> /**  Method responsible to handle search response when search returns results. Within this callback user will obtain Response populated with Results.    @param additionalDataSearch Object type TTAdditionalDataSearch.  @param response Object type TTAdditionalDataSearchResponse.  */ -(void)additionalDataSearch:(TTAdditionalDataSearch* _Nonnull)additionalDataSearch completedWithResponse:(TTAdditionalDataSearchResponse * _Nonnull)response; /**  Method responsible to geometry route search response when search returns error. Within this callback user will obtain AdditionalDataSearchError containing a Throwable fail reason    @param additionalDataSearch Object type TTAdditionalDataSearch.  @param error Object type TTResponseError.  */ -(void)additionalDataSearch:(TTAdditionalDataSearch* _Nonnull)additionalDataSearch failedWithError:(TTResponseError* _Nonnull)error; @end`
To:  `@protocol TTAdditionalDataSearchDelegate <NSObject>`
From:  `@protocol TTAlongRouteSearchDelegate <NSObject>  @optional /**  Method responsible to handle along route search response when search returns results. Within this callback user will obtain Response populated with Results.    @param search Object type TTAlongRouteSearch.  @param response Object type TTAlongRouteSearchResponse.  @deprecated This method is deprecated, use completedWithResponse instead.  */ -(void)search:(TTAlongRouteSearch* _Nonnull)search completedWithResult:(TTAlongRouteSearchResponse* _Nonnull)response TT_DEPRECATED("02.07.2018", "This method is deprecated, use completedWithResponse instead.");  /**  Method responsible to handle along route search response when search returns results. Within this callback user will obtain Response populated with Results.    @param search Object type TTAlongRouteSearch.  @param response Object type TTAlongRouteSearchResponse.  */ -(void)search:(TTAlongRouteSearch* _Nonnull)search completedWithResponse:(TTAlongRouteSearchResponse* _Nonnull)response;  /**  Method responsible to handle along route search response when search returns error. Within this callback user will obtain Throwable fail reason    @param search object type TTAlongRouteSearch.  @param error object type TTResponseError.  */ -(void)search:(TTAlongRouteSearch* _Nonnull)search failedWithError:(TTResponseError* _Nonnull)error;  @end`
To:  `@protocol TTAlongRouteSearchDelegate <NSObject>`
From:  `@protocol TTSearchDelegate <NSObject>  @optional /**  Method responsible to handle search response when search returns results. Within this callback user will obtain Response populated with Results.    @param search Object type TTSearch.  @param result Object type NSArray<TTSearchResult>.  @deprecated This method is deprecated, use completedWithResponse instead.  */ -(void)search:(TTSearch* _Nonnull)search completedWithResult:(NSArray<TTSearchResult*>* _Nonnull)result TT_DEPRECATED("28.06.2018", "This method is deprecated, use completedWithResponse instead.");  /**  Method responsible to handle search response when search returns response. Within this callback user will obtain Response populated with Results.    @param search Object type TTSearch.  @param response Object type TTSearchResponse.  */ -(void)search:(TTSearch* _Nonnull)search completedWithResponse:(TTSearchResponse* _Nonnull)response;  /**  Method responsible to handle search response when search returns error. Within this callback user will obtain Throwable fail reason    @param search Object type TTSearch.  @param error Object type TTResponseError.  */ -(void)search:(TTSearch* _Nonnull)search failedWithError:(TTResponseError* _Nonnull)error; @end`
To:  `@protocol TTSearchDelegate <NSObject>`
From:  `NS_OPTIONS(NSUInteger, TTSearchIndex) {     TTSearchIndexAddres = 1 << 0,     TTSearchIndexGeographies = 1 << 1,     TTSearchIndexPointAddress = 1 << 2,     TTSearchIndexPointOfInterest = 1 << 3,     TTSearchIndexStreets = 1 << 4,     TTSearchIndexCrossStreets = 1 << 5 }`
To:  `NS_OPTIONS(NSUInteger, TTSearchIndex) { TTSearchIndexAddres = 1 << 0, TTSearchIndexGeographies = 1 << 1, TTSearchIndexPointAddress = 1 << 2, TTSearchIndexPointOfInterest = 1 << 3, TTSearchIndexStreets = 1 << 4, TTSearchIndexCrossStreets = 1 << 5 }`
From:  `__attribute__ ((deprecated)) extern NSString * _Nonnull const TTReverseGeocoderAttributeCountrySubdivisionName`
To:  `__attribute__((deprecated)) extern NSString *_Nonnull const TTReverseGeocoderAttributeCountrySubdivisionName`
From:  `__attribute__ ((deprecated)) extern NSString * _Nonnull const TTReverseGeocoderAttributeStreetNameAndNumber`
To:  `__attribute__((deprecated)) extern NSString *_Nonnull const TTReverseGeocoderAttributeStreetNameAndNumber`
From:  `class TTBatchQuery : NSObject`
To:  `class TTBatchQuery`
From:  `-(instancetype _Nonnull)init NS_UNAVAILABLE;`
To:  `- (instancetype _Nonnull)init NS_UNAVAILABLE;`
From:  `__attribute__ ((deprecated)) extern NSString * _Nonnull const TTReverseGeocoderAttributeStreetNumber`
To:  `__attribute__((deprecated)) extern NSString *_Nonnull const TTReverseGeocoderAttributeStreetNumber`
From:  `var totalRequests: UInt { get set }`
To:  `var totalRequests: UInt { get }`
From:  `@property (nonatomic, assign, unsafe_unretained, readwrite)     NSUInteger totalRequests;`
To:  `@property (nonatomic, assign, unsafe_unretained, readonly)     NSUInteger totalRequests;`
From:  `@property (nonatomic, assign, unsafe_unretained, readwrite)     NSUInteger totalSuccessfulRequests;`
To:  `@property (nonatomic, assign, unsafe_unretained, readonly)     NSUInteger totalSuccessfulRequests;`
From:  `var totalSuccessfulRequests: UInt { get set }`
To:  `var totalSuccessfulRequests: UInt { get }`
From:  `class TTBatchSearch : NSObject`
To:  `class TTBatchSearch`
From:  `class TTAlongRouteSearch : NSObject`
To:  `class TTAlongRouteSearch`
From:  `class TTGeometrySearchQuery : NSObject`
To:  `class TTGeometrySearchQuery`
From:  `__attribute__ ((deprecated)) extern NSString * _Nonnull const TTReverseGeocoderAttributeCountryCode`
To:  `__attribute__((deprecated)) extern NSString *_Nonnull const TTReverseGeocoderAttributeCountryCode`
From:  `__attribute__ ((deprecated)) extern NSString * _Nonnull const TTReverseGeocoderAttributeMunicipalitySubdivision`
To:  `__attribute__((deprecated)) extern NSString *_Nonnull const TTReverseGeocoderAttributeMunicipalitySubdivision`
From:  `__attribute__ ((deprecated)) extern NSString * _Nonnull const TTReverseGeocoderAttributeCountrySecondarySubdivision`
To:  `__attribute__((deprecated)) extern NSString *_Nonnull const TTReverseGeocoderAttributeCountrySecondarySubdivision`
From:  `-(instancetype _Nonnull)init NS_UNAVAILABLE;`
To:  `- (instancetype _Nonnull)init NS_UNAVAILABLE;`
From:  `__attribute__ ((deprecated)) extern NSString * _Nonnull const TTReverseGeocoderAttributeMunicipality`
To:  `__attribute__((deprecated)) extern NSString *_Nonnull const TTReverseGeocoderAttributeMunicipality`
From:  `@property (nonatomic, strong, readonly) TTAddressRanges * _Nullable addressRanges`
To:  `@property(nonatomic, strong, readonly) TTAddressRanges *_Nullable addressRanges`
From:  `@property (nonatomic, strong, readonly) TTAdditionalDataSources * _Nullable additionalDataSources`
To:  `@property(nonatomic, strong, readonly) TTAdditionalDataSources *_Nullable additionalDataSources`
From:  `@property (nonatomic, strong, readonly) TTPoi * _Nullable poi`
To:  `@property(nonatomic, strong, readonly) TTPoi *_Nullable poi`
From:  `@property (nonatomic, strong, readonly) TTBoundingBox * _Nullable boundingBox`
To:  `@property(nonatomic, strong, readonly) TTBoundingBox *_Nullable boundingBox`
From:  `@property (nonatomic, strong, readonly) TTBoundingBox * _Nonnull viewport`
To:  `@property(nonatomic, strong, readonly) TTBoundingBox *_Nonnull viewport`
From:  `class TTSearchQuery : NSObject`
To:  `class TTSearchQuery`
From:  `class TTGeometrySearch : NSObject`
To:  `class TTGeometrySearch`
From:  `class TTAdditionalDataSearch : NSObject`
To:  `class TTAdditionalDataSearch`
From:  `@property (nonatomic, strong, readonly) TTBoundingBox *_Nonnull viewport;`
To:  `@property(nonatomic, readonly, strong) TTBoundingBox *_Nonnull viewport`
From:  `class TTReverseGeocoder : NSObject`
To:  `class TTReverseGeocoder`
From:  `@protocol TTReverseGeocoderDelegate <NSObject>  @optional /**  Method responsible to handle reverse geocoder search response when search returns results. Within this callback user will obtain Response populated with Result.    @param reverseGeocoder Object type TTReverseGeocoder.  @param result Object type TTReverseGeocoderResponse.  @deprecated This method is deprecated, use completedWithResponse instead.  */ -(void)reverseGeocoder:(TTReverseGeocoder* _Nonnull)reverseGeocoder completedWithResult:(TTReverseGeocoderResponse* _Nonnull)result TT_DEPRECATED("28.06.2018", "This method is deprecated, use completedWithResponse instead.");  /**  Method responsible to handle reverse geocoder search response when search returns results. Within this callback user will obtain Response populated with Result.    @param reverseGeocoder Object type TTReverseGeocoder.  @param response Object type TTReverseGeocoderResponse.  */ -(void)reverseGeocoder:(TTReverseGeocoder* _Nonnull)reverseGeocoder completedWithResponse:(TTReverseGeocoderResponse* _Nonnull)response;  /**  Method responsible to handle reverse geocoder search response when search returns error. Within this callback user will obtain Throwable fail reason    @param reverseGeocoder Object type TTReverseGeocoder.  @param error Object type TTResponseError.  */ -(void)reverseGeocoder:(TTReverseGeocoder* _Nonnull)reverseGeocoder failedWithError:(TTResponseError* _Nonnull)error; @end`
To:  `@protocol TTReverseGeocoderDelegate <NSObject>`
From:  `class TTReverseGeocoderQuery : NSObject`
To:  `class TTReverseGeocoderQuery`
From:  `__attribute__ ((deprecated)) extern NSString * _Nonnull const TTReverseGeocoderAttributeStreet`
To:  `__attribute__((deprecated)) extern NSString *_Nonnull const TTReverseGeocoderAttributeStreet`
From:  `__attribute__ ((deprecated)) extern NSString * _Nonnull const TTReverseGeocoderAttributeFreeformAddress`
To:  `__attribute__((deprecated)) extern NSString *_Nonnull const TTReverseGeocoderAttributeFreeformAddress`
From:  `__attribute__ ((deprecated)) extern NSString * _Nonnull const TTReverseGeocoderAttributeCountryCodeISO3`
To:  `__attribute__((deprecated)) extern NSString *_Nonnull const TTReverseGeocoderAttributeCountryCodeISO3`
From:  `class TTSearch : NSObject`
To:  `class TTSearch`
From:  `@protocol TTGeometrySearchDelegate <NSObject>  @optional /**  Method responsible to handle geometry search response when search returns results. Within this callback user will obtain Response populated with Results.    @param search Object type TTGeometrySearch.  @param result Object type TTGeometrySearchResponse.  @deprecated This method is deprecated, use completedWithResponse instead.  */ -(void)search:(TTGeometrySearch* _Nonnull)search completedWithResult:(TTGeometrySearchResponse* _Nonnull)result TT_DEPRECATED("02.07.2018", "This method is deprecated, use completedWithResponse instead.");  /**  Method responsible to handle geometry search response when search returns response. Within this callback user will obtain Response populated with Results.    @param search Object type TTGeometrySearch.  @param response Object type TTGeometrySearchResponse.  */ -(void)search:(TTGeometrySearch* _Nonnull)search completedWithResponse:(TTGeometrySearchResponse* _Nonnull)response;  /**  Method responsible to geometry route search response when search returns error. Within this callback user will obtain TTResponseError containing a Throwable fail reason    @param search Object type TTGeometrySearch.  @param error object type TTResponseError.  */ -(void)search:(TTGeometrySearch* _Nonnull)search failedWithError:(TTResponseError* _Nonnull)error;  @end`
To:  `@protocol TTGeometrySearchDelegate <NSObject>`
From:  `__attribute__ ((deprecated)) extern NSString * _Nonnull const TTReverseGeocoderAttributePostalCode`
To:  `__attribute__((deprecated)) extern NSString *_Nonnull const TTReverseGeocoderAttributePostalCode`