AI-generated Key Takeaways
- 
          
PALSettings is a class that stores SDK wide settings.
 - 
          
The
allowStorageproperty specifies if storage is allowed, with a default value of false. - 
          
The
directedForChildOrUnknownAgeproperty indicates if the ad request is directed to a child or user of unknown age, with a default value of false. 
PALSettings
@interface PALSettings : NSObjectThe PALSettings class stores SDK wide settings.
- 
                  
                  
Specify if storage is allowed (used for TCFv2 compliance). Default value is false.
Declaration
Swift
var allowStorage: Bool { get set }Objective-C
@property (nonatomic) BOOL allowStorage; - 
                  
                  
Specify if the ad request is directed to a child or user of an unknown age (for example, TFCD or TFUA). Default value is false.
Declaration
Swift
var directedForChildOrUnknownAge: Bool { get set }Objective-C
@property (nonatomic) BOOL directedForChildOrUnknownAge;