Skip to content

Instantly share code, notes, and snippets.

@oxlb
Created October 16, 2019 07:09
Show Gist options
  • Save oxlb/1d41fe4dad20857b5952b480e39bd583 to your computer and use it in GitHub Desktop.
Save oxlb/1d41fe4dad20857b5952b480e39bd583 to your computer and use it in GitHub Desktop.
AdAnalyticsModel class for Google ads
class AdAnalyticsModel {
func trackAd(typeOfAd: adType, adUnitId: String?) {
if let adId = adUnitId {
print("adUnitId ", adId)
}
print("adType \(typeOfAd.getName())")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment