AI-generated Key Takeaways
- 
          UMPDebugSettings is a class for overriding settings for debugging or testing. 
- 
          The testDeviceIdentifiersproperty is an array of strings to enable debug features on specific devices, with debug features always enabled on simulators.
- 
          The geographyproperty is used to set a debug geography.
UMPDebugSettings
@interface UMPDebugSettings : NSObject <NSCopying>Overrides settings for debugging or testing.
- 
                  
                  Array of device identifier strings. Debug features are enabled for devices with these identifiers. Debug features are always enabled for simulators. DeclarationSwift var testDeviceIdentifiers: [String]? { get set }Objective-C @property (nonatomic, copy, nullable) NSArray<NSString *> *testDeviceIdentifiers;
- 
                  
                  Debug geography. DeclarationSwift var geography: DebugGeography { get set }Objective-C @property (nonatomic) UMPDebugGeography geography;