From:  `class TTGeofencingReportService : NSObject`
To:  `class TTGeofencingReportService`
From:  `@protocol TTGeofencingReportServiceDelegate <NSObject> /**  Method responsible to handle geofencing response when geofencing returns response. Within this callback user will obtain Response populated with Results.   @param search Object type TTGeofencingReportService.  @param response Object type TTGeofencingReport.  */ -(void)report:(TTGeofencingReportService* _Nonnull)search completedWithReport:(TTGeofencingReport* _Nonnull)report;  /**  Method responsible to handle geofencing response when geofencing returns error. Within this callback user will obtain Throwable fail reason   @param search Object type TTGeofencingReportService.  @param error Object type TTResponseError.  */ -(void)report:(TTGeofencingReportService* _Nonnull)search failedWithError:(TTResponseError* _Nonnull)error;  @end`
To:  `@protocol TTGeofencingReportServiceDelegate <NSObject>`
From:  `@property (nonatomic, strong, readonly) TTLocation* _Nonnull point`
To:  `@property(nonatomic, strong, readonly) TTLocation *_Nonnull point`
From:  `@property (nonatomic, strong, readonly) TTLocation* _Nonnull closestPoint`
To:  `@property(nonatomic, strong, readonly) TTLocation *_Nonnull closestPoint`