AI-generated Key Takeaways
- 
          
GMSNavigationDelayCategoryis an enum representing the delay category of a route or path. - 
          
It has four categories:
noData,heavy,medium, andlight, indicating different levels of traffic delays. - 
          
Each category is represented by an integer value, accessible in both Swift and Objective-C.
 - 
          
The description for all categories currently states "No traffic data is provided," which may indicate a documentation error or functionality reliant on external data.
 
GMSNavigationDelayCategory
enum GMSNavigationDelayCategory : NSInteger {}A GMSNavigationDelayCategory is a category that represents the delay category of a route or a
a path.
- 
                  
                  
No traffic data is provided.
Declaration
Swift
case noData = 0Objective-C
GMSNavigationDelayCategoryNoData = 0 - 
                  
                  
No traffic data is provided.
Declaration
Swift
case heavy = 1Objective-C
GMSNavigationDelayCategoryHeavy = 1 - 
                  
                  
No traffic data is provided.
Declaration
Swift
case medium = 2Objective-C
GMSNavigationDelayCategoryMedium = 2 - 
                  
                  
No traffic data is provided.
Declaration
Swift
case light = 3Objective-C
GMSNavigationDelayCategoryLight = 3