AI-generated Key Takeaways
- 
          GMTSTripStatusis an enumeration that defines all possible statuses for a trip.
- 
          The GMTSTripStatusenum includes statuses likeunknown,new,enrouteToPickup,arrivedAtPickup, andenrouteToIntermediateDestination.
- 
          It also covers arrivedAtIntermediateDestination,enrouteToDropoff,complete, andcanceledtrip statuses.
- 
          The declaration of each of the trip statuses are listed for both Swift and Objective-C. 
GMTSTripStatus
enum GMTSTripStatus : NSUInteger {}Defines all the possible trip statuses.
- 
                  
                  DeclarationSwift case unknown = 0Objective-C GMTSTripStatusUnknown
- 
                  
                  DeclarationSwift case new = 1Objective-C GMTSTripStatusNew
- 
                  
                  DeclarationSwift case enrouteToPickup = 2Objective-C GMTSTripStatusEnrouteToPickup
- 
                  
                  DeclarationSwift case arrivedAtPickup = 3Objective-C GMTSTripStatusArrivedAtPickup
- 
                  
                  DeclarationSwift case enrouteToIntermediateDestination = 4Objective-C GMTSTripStatusEnrouteToIntermediateDestination
- 
                  
                  DeclarationSwift case arrivedAtIntermediateDestination = 5Objective-C GMTSTripStatusArrivedAtIntermediateDestination
- 
                  
                  DeclarationSwift case enrouteToDropoff = 6Objective-C GMTSTripStatusEnrouteToDropoff
- 
                  
                  DeclarationSwift case complete = 7Objective-C GMTSTripStatusComplete
- 
                  
                  DeclarationSwift case canceled = 8Objective-C GMTSTripStatusCanceled