RTBSDK Android Integration
Release Notes
  • Start
    • Setup
      • Maven
      • Configure RTBSDK
    • Consent
  • Formats
    • Banner
    • Fullscreen (Interstitial)
    • Native Ads
    • Advanced
      • Separate Loading and Rendering of Banner Ads
  • Other
    • AppLovin Custom Adapter
    • AdMob Custom Events
    • Reference
      • Classes
        • RTBSDKManager
        • RTBBannerView
        • RTBBannerAdProvider
        • RTBBannerRequestConfiguration
        • RTBBannerSize
        • RTBFullscreenAd
        • RTBFullscreenRequestConfiguration
        • RTBBidInfo
        • RTBNativeAd
        • RTBNativeAdRequestConfiguration
        • RTBUserTargeting
        • RTBNativeAdLoader
      • Interfaces
        • RTBBannerViewDelegate
        • RTBBannerAdLoadDelegate
        • RTBBannerAdInteractionDelegate
        • RTBFullscreenDelegate
        • RTBNativeAdLoadDelegate
        • RTBNativeAdInteractionDelegate
      • Enumerations
        • RTBGender
  • Sample App
Powered by GitBook
On this page
  1. Other
  2. Reference
  3. Classes

RTBUserTargeting

class RTBUserTargeting() {
   
    var userID: String? = null
    var gender: RTBGender? = null
    var keywords: List<String>? = null
    var yearOfBirth: Int? = null

    constructor(
        userID: String? = null,
        gender: RTBGender? = null,
        keywords: List<String>? = null,
        yearOfBirth: Int? = null
    ) : this() {
        this.userID = userID
        this.gender = gender
        this.keywords = keywords
        this.yearOfBirth = yearOfBirth
    }
}
PreviousRTBNativeAdRequestConfigurationNextRTBNativeAdLoader

Last updated 2 months ago