From:  `@protocol TTTrafficIncidentsDelegate <NSObject>  @optional /**  Method responsible to handle Traffic Incidents response when search returns results. Within this callback user will obtain Response populated with Results.   @param trafficIncidents Object type TTTrafficIncidents.  @param response Object type TTIncidentDetailsResponse.  */ - (void)incidentDetails:(TTTrafficIncidents* _Nonnull)trafficIncidents completedWithResponse:(TTIncidentDetailsResponse * _Nonnull)response;  /**  Method responsible to handle Traffic Incidents response when search returns error. Within this callback user will obtain TTResponseError containing a Throwable fail reason   @param trafficIncidents Object type TTTrafficIncidents.  @param error Object type TTResponseError.  */ - (void)incidentDetails:(TTTrafficIncidents* _Nonnull)trafficIncidents failedWithError:(TTResponseError* _Nonnull)error;  @end`
To:  `@protocol TTTrafficIncidentsDelegate <NSObject>`
From:  `typedef NS_ENUM(NSInteger, TTTrafficFormatType`
To:  `typedef enum TTTrafficFormatType TTTrafficFormatType`
From:  `NS_ENUM(NSInteger, TTTrafficFormatType) {     TTTrafficFormatTypeXml,     TTTrafficFormatTypeJson,     TTTrafficFormatTypeJsonp }`
To:  `enum TTTrafficFormatType {}`
From:  `typedef NS_ENUM(NSInteger, TTTrafficIncidentStyleType`
To:  `typedef enum TTTrafficIncidentStyleType TTTrafficIncidentStyleType`
From:  `NS_ENUM(NSInteger, TTTrafficIncidentStyleType) {     TTTrafficIncidentStyleTypeS1 = 0,     TTTrafficIncidentStyleTypeS2,     TTTrafficIncidentStyleTypeS3,     TTTrafficIncidentStyleTypeNight }`
To:  `enum TTTrafficIncidentStyleType {}`
From:  `typedef NS_ENUM(NSInteger, TTTrafficStyleType`
To:  `typedef enum TTTrafficStyleType TTTrafficStyleType`
From:  `NS_ENUM(NSInteger, TTTrafficStyleType) {     TTTrafficStyleTypeAbsolute = 0,     TTTrafficStyleTypeRelative,     TTTrafficStyleTypeRelativeDelay }`
To:  `enum TTTrafficStyleType {}`
From:  `typedef NS_ENUM(NSInteger, TTTrafficUnitType`
To:  `typedef enum TTTrafficUnitType TTTrafficUnitType`
From:  `NS_ENUM(NSInteger, TTTrafficUnitType) {     TTTrafficUnitTypeKMPH = 1,     TTTrafficUnitTypeMPH }`
To:  `enum TTTrafficUnitType {}`
From:  `- (instancetype _Nonnull)initWithTraffic:(TTTrafficDetailBase* _Nonnull)detail;`
To:  `- (instancetype _Nonnull)initWithTraffic:(TTTrafficDetailBase *_Nonnull)detail;`
From:  `+ (TTTrafficDetailImage* _Nonnull)createWithTraffic:(TTTrafficDetailBase* _Nonnull)detail;`
To:  `+ (TTTrafficDetailImage *_Nonnull)createWithTraffic:(TTTrafficDetailBase *_Nonnull)detail;`
From:  `typedef NS_ENUM(NSInteger, TTTrafficGeometriesType`
To:  `typedef enum TTTrafficGeometriesType TTTrafficGeometriesType`
From:  `NS_ENUM(NSInteger, TTTrafficGeometriesType) {     TTTrafficGeometriesTypeOriginal,     TTTrafficGeometriesTypeShifted }`
To:  `enum TTTrafficGeometriesType {}`
From:  `class TTTrafficIncidents : NSObject`
To:  `class TTTrafficIncidents`
From:  `class TTTrafficFlow : NSObject`
To:  `class TTTrafficFlow`
From:  `@protocol TrafficFlowDelegate <NSObject>  @optional /**  Method responsible to handle Flow Segment Data response when search returns results. Within this callback user will obtain Response populated with Results.   @param flowSegmentData Object type TTTrafficFlow.  @param response Object type TTFlowSegmentDataResponse.  */ - (void)flowSegmentData:(TTTrafficFlow* _Nonnull)flowSegmentData completedWithResponse:(TTFlowSegmentDataResponse * _Nonnull)response;   /**   Method responsible to handle Flow Segment Data response when search returns error. Within this callback user will obtain TTResponseError containing a Throwable fail reason   @param flowSegmentData Object type TTTrafficFlow.  @param error Object type TTResponseError.  */ - (void)flowSegmentData:(TTTrafficFlow* _Nonnull)flowSegmentData failedWithError:(TTResponseError* _Nonnull)error; @end`
To:  `@protocol TrafficFlowDelegate <NSObject>`
From:  `NS_ENUM(NSInteger, TTTrafficDetailsMagnitude) {     TTTrafficDetailsMagnitudeUnknown = 0,     TTTrafficDetailsMagnitudeMinor,     TTTrafficDetailsMagnitudeModerate,     TTTrafficDetailsMagnitudeMajor,     TTTrafficDetailsMagnitudeUndefined }`
To:  `enum TTTrafficDetailsMagnitude {}`
From:  `typedef NS_ENUM(NSInteger, TTTrafficDetailsMagnitude`
To:  `typedef enum TTTrafficDetailsMagnitude TTTrafficDetailsMagnitude`
From:  `NS_ENUM(NSInteger, TTTrafficDetailsCategoryIcon) {     TTTrafficDetailsCategoryIconUnknown = 0,     TTTrafficDetailsCategoryIconAccident,     TTTrafficDetailsCategoryIconFog,     TTTrafficDetailsCategoryIconDangerConditions,     TTTrafficDetailsCategoryIconRain,     TTTrafficDetailsCategoryIconIce,     TTTrafficDetailsCategoryIconJam,     TTTrafficDetailsCategoryIconLaneClosed,     TTTrafficDetailsCategoryIconRoadClosed,     TTTrafficDetailsCategoryIconRoadWorks,     TTTrafficDetailsCategoryIconWind,     TTTrafficDetailsCategoryIconFlooding,     TTTrafficDetailsCategoryIconDetour,     TTTrafficDetailsCategoryIconCluster }`
To:  `enum TTTrafficDetailsCategoryIcon {}`
From:  `typedef NS_ENUM(NSInteger, TTTrafficDetailsCategoryIcon`
To:  `typedef enum TTTrafficDetailsCategoryIcon TTTrafficDetailsCategoryIcon`