AI-generated Key Takeaways
- 
          GMSDayOfWeekis an enumeration representing the days of the week.
- 
          It aligns with NSDateComponents.weekdayindex, starting with Sunday as 1 and ending with Saturday as 7.
- 
          The enum provides constants for each day of the week, accessible in both Swift and Objective-C. 
- 
          Developers can use this enum to work with days of the week within the Google Maps SDK for iOS. 
GMSDayOfWeek
enum GMSDayOfWeek : NSUInteger {}The fields represent individual days of the week. Matches NSDateComponents.weekday index. Refer to https://developer.apple.com/documentation/foundation/nsdatecomponents/1410442-weekday
- 
                  
                  DeclarationSwift case sunday = 1Objective-C GMSDayOfWeekSunday = 1
- 
                  
                  DeclarationSwift case monday = 2Objective-C GMSDayOfWeekMonday = 2
- 
                  
                  DeclarationSwift case tuesday = 3Objective-C GMSDayOfWeekTuesday = 3
- 
                  
                  DeclarationSwift case wednesday = 4Objective-C GMSDayOfWeekWednesday = 4
- 
                  
                  DeclarationSwift case thursday = 5Objective-C GMSDayOfWeekThursday = 5
- 
                  
                  DeclarationSwift case friday = 6Objective-C GMSDayOfWeekFriday = 6
- 
                  
                  DeclarationSwift case saturday = 7Objective-C GMSDayOfWeekSaturday = 7