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 2021-02-23 UTC."],[[["`GADAdValuePrecision` is an enum defining the level of accuracy for an ad's value."],["It includes four precision levels: `Unknown`, `Estimated`, `PublisherProvided`, and `Precise`."],["These levels indicate whether the ad value is unknown, estimated, provided by the publisher, or the exact price paid."],["Developers can use this enum to understand the reliability of the reported ad value."]]],["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"]]