From:  `NS_ENUM(NSInteger, TTTrafficUnitType) {     TTTrafficUnitTypeKMPH = 1,     TTTrafficUnitTypeMPH }`
To:  `NS_ENUM(NSInteger, TTTrafficUnitType) { TTTrafficUnitTypeKMPH = 1, TTTrafficUnitTypeMPH }`
From:  `NS_ENUM(NSInteger, TTTrafficGeometriesType) {     TTTrafficGeometriesTypeOriginal,     TTTrafficGeometriesTypeShifted }`
To:  `NS_ENUM(NSInteger, TTTrafficGeometriesType) { TTTrafficGeometriesTypeOriginal, TTTrafficGeometriesTypeShifted }`
From:  `NS_ENUM(NSInteger, TTTrafficFormatType) {     TTTrafficFormatTypeXml,     TTTrafficFormatTypeJson,     TTTrafficFormatTypeJsonp }`
To:  `NS_ENUM(NSInteger, TTTrafficFormatType) { TTTrafficFormatTypeXml, TTTrafficFormatTypeJson, TTTrafficFormatTypeJsonp }`
From:  `NS_ENUM(NSInteger, TTTrafficStyleType) {     TTTrafficStyleTypeAbsolute = 0,     TTTrafficStyleTypeRelative,     TTTrafficStyleTypeRelativeDelay }`
To:  `NS_ENUM(NSInteger, TTTrafficStyleType) { TTTrafficStyleTypeAbsolute = 0, TTTrafficStyleTypeRelative, TTTrafficStyleTypeRelativeDelay }`
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:  `@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:  `NS_ENUM(NSInteger, TTTrafficIncidentStyleType) {     TTTrafficIncidentStyleTypeS1 = 0,     TTTrafficIncidentStyleTypeS2,     TTTrafficIncidentStyleTypeS3,     TTTrafficIncidentStyleTypeNight }`
To:  `NS_ENUM(NSInteger, TTTrafficIncidentStyleType) { TTTrafficIncidentStyleTypeS1 = 0, TTTrafficIncidentStyleTypeS2, TTTrafficIncidentStyleTypeS3, TTTrafficIncidentStyleTypeNight }`
From:  `+ (TTTrafficDetailImage* _Nonnull)createWithTraffic:(TTTrafficDetailBase* _Nonnull)detail;`
To:  `+ (TTTrafficDetailImage *_Nonnull)createWithTraffic:(TTTrafficDetailBase *_Nonnull)detail;`
From:  `- (instancetype _Nonnull)initWithTraffic:(TTTrafficDetailBase* _Nonnull)detail;`
To:  `- (instancetype _Nonnull)initWithTraffic:(TTTrafficDetailBase *_Nonnull)detail;`
From:  `NS_ENUM(NSInteger, TTTrafficDetailsMagnitude) {     TTTrafficDetailsMagnitudeUnknown = 0,     TTTrafficDetailsMagnitudeMinor,     TTTrafficDetailsMagnitudeModerate,     TTTrafficDetailsMagnitudeMajor,     TTTrafficDetailsMagnitudeUndefined }`
To:  `NS_ENUM(NSInteger, TTTrafficDetailsMagnitude) { TTTrafficDetailsMagnitudeUnknown = 0, TTTrafficDetailsMagnitudeMinor, TTTrafficDetailsMagnitudeModerate, TTTrafficDetailsMagnitudeMajor, TTTrafficDetailsMagnitudeUndefined }`