Stay organized with collections
Save and categorize content based on your preferences.
GADAdValuePrecision
NS_ENUM(NSInteger, GADAdValuePrecision) {
/// An ad value with unknown precision.
GADAdValuePrecisionUnknown = 0,
/// An ad value estimated from aggregated data.
GADAdValuePrecisionEstimated = 1,
/// A publisher-provided ad value, such as manual CPMs in a mediation group.
GADAdValuePrecisionPublisherProvided = 2,
/// The precise value paid for this ad.
GADAdValuePrecisionPrecise = 3
}
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[[["\u003cp\u003e\u003ccode\u003eGADAdValuePrecision\u003c/code\u003e is an enum defining the level of accuracy for an ad's value.\u003c/p\u003e\n"],["\u003cp\u003eIt includes four precision levels: \u003ccode\u003eUnknown\u003c/code\u003e, \u003ccode\u003eEstimated\u003c/code\u003e, \u003ccode\u003ePublisherProvided\u003c/code\u003e, and \u003ccode\u003ePrecise\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThese levels indicate whether the ad value is unknown, estimated, provided by the publisher, or the exact price paid.\u003c/p\u003e\n"],["\u003cp\u003eDevelopers can use this enum to understand the reliability of the reported ad value.\u003c/p\u003e\n"]]],["GADAdValuePrecision defines the accuracy of ad values. It has four states: `Unknown` (0) when the precision is uncertain; `Estimated` (1), derived from aggregated data; `PublisherProvided` (2), supplied by the publisher (e.g., manual CPMs); and `Precise` (3), representing the exact payment for the ad. Each state is defined as a case with a corresponding integer value in both Swift and Objective-C.\n"],null,[]]