AI-generated Key Takeaways
- 
          GADAdValue is an object representing the monetary value earned from an ad. 
- 
          It includes properties for the precision of the reported ad value, the ad's value as an NSDecimalNumber, and the value's currency code as a String. 
GADAdValue
@interface GADAdValue : NSObject <NSCopying>The monetary value earned from an ad.
- 
                  
                  The precision of the reported ad value. DeclarationSwift var precision: AdValuePrecision { get }Objective-C @property (nonatomic, readonly) GADAdValuePrecision precision;
- 
                  
                  The ad’s value. DeclarationSwift var value: NSDecimalNumber { get }Objective-C @property (nonatomic, readonly, nonnull) NSDecimalNumber *value;
- 
                  
                  The value’s currency code. DeclarationSwift var currencyCode: String { get }Objective-C @property (nonatomic, readonly, nonnull) NSString *currencyCode;