AI-generated Key Takeaways
- 
          
UMPDebugGeography is an enum used for testing geography for debug devices.
 - 
          
It includes options to simulate geography in the EEA, a regulated US State, a region with no regulation, or to disable geography debugging.
 - 
          
UMPDebugGeographyNotEEAis deprecated and should be replaced byUMPDebugGeographyOther. 
UMPDebugGeography
enum UMPDebugGeography : NSInteger {}Debug values for testing geography.
- 
                  
                  
< Disable geography debugging.
Declaration
Swift
case disabled = 0Objective-C
UMPDebugGeographyDisabled = 0 - 
                  
                  
< Geography appears as in EEA for debug devices.
Declaration
Swift
case EEA = 1Objective-C
UMPDebugGeographyEEA = 1 - 
                  
                  
< Geography appears as in a regulated US State.
Declaration
Swift
case regulatedUSState = 3Objective-C
UMPDebugGeographyRegulatedUSState = 3 - 
                  
                  
< Geography appears as in a region with no regulation in force.
Declaration
Swift
case other = 4Objective-C
UMPDebugGeographyOther = 4 - 
                  
                  
Deprecated
Deprecated. Use UMPDebugGeographyOther.
Undocumented
Declaration
Swift
case notEEA = 2Objective-C
UMPDebugGeographyNotEEA __attribute__((deprecated("Deprecated. Use UMPDebugGeographyOther."))) = 2