Share your feedback and help shape the Google Mobile Ads SDK roadmap. Take the Google Mobile Ads SDK Annual Survey for 2023 before it closes on May 5th, 2023.

GoogleMobileAds Framework Reference

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
}

Undocumented

  • An ad value with unknown precision.

    Declaration

    Swift

    case unknown = 0

    Objective-C

    GADAdValuePrecisionUnknown = 0
  • An ad value estimated from aggregated data.

    Declaration

    Swift

    case estimated = 1

    Objective-C

    GADAdValuePrecisionEstimated = 1
  • A publisher-provided ad value, such as manual CPMs in a mediation group.

    Declaration

    Swift

    case publisherProvided = 2

    Objective-C

    GADAdValuePrecisionPublisherProvided = 2
  • The precise value paid for this ad.

    Declaration

    Swift

    case precise = 3

    Objective-C

    GADAdValuePrecisionPrecise = 3