diff --git a/kotlin/src/commonMain/kotlin/com/adsbynimbus/openrtb/request/User.kt b/kotlin/src/commonMain/kotlin/com/adsbynimbus/openrtb/request/User.kt index 77948cb..554531d 100644 --- a/kotlin/src/commonMain/kotlin/com/adsbynimbus/openrtb/request/User.kt +++ b/kotlin/src/commonMain/kotlin/com/adsbynimbus/openrtb/request/User.kt @@ -53,6 +53,7 @@ public class User( * started. * @property vungle_buyeruid String token provided by the Vungle SDK to include Vungle in the auction. * @property mfx_buyerdata Map provided by MobileFuse SDK to include MobileFuse in the auction. + * @property mintegral_sdk Map containing buyeruid and sdkv strings to include Mintegral in the auction. * @property eids Collection of external user ids */ @Serializable @@ -64,6 +65,7 @@ public class User( @JvmField @SerialName("vungle_buyeruid") public var vungle_buyeruid: String? = null, @JvmField @SerialName("eids") public var eids: Set? = null, @JvmField @SerialName("mfx_buyerdata") public var mfx_buyerdata: Map? = null, + @JvmField @SerialName("mintegral_sdk") public var mintegral_sdk: Map? = null, ) }