Skip to content

Commit a65b8c4

Browse files
authored
adds mobile fuse field to User.ext (#142)
1 parent 64ab793 commit a65b8c4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
android = "8.0.0"
2+
android = "8.0.2"
33
android-buildtools = "33.0.2"
44
dokka = "1.8.10"
55
kotest = "5.5.5"

kotlin/src/commonMain/kotlin/com/adsbynimbus/openrtb/request/User.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ public class User(
5252
* and the token and campaign is refreshed after the ad playback has
5353
* started.
5454
* @property vungle_buyeruid String token provided by the Vungle SDK to include Vungle in the auction.
55+
* @property mobilefuse_sdk Map<String, String> provided by MobileFuse SDK to include MobileFuse in the auction.
5556
* @property eids Collection of external user ids
5657
*/
5758
@Serializable
@@ -61,6 +62,7 @@ public class User(
6162
@JvmField @SerialName("unity_buyeruid") public var unity_buyeruid: String? = null,
6263
@JvmField @SerialName("vungle_buyeruid") public var vungle_buyeruid: String? = null,
6364
@JvmField @SerialName("eids") public var eids: Set<EID>? = null,
65+
@JvmField @SerialName("mobilefuse_sdk") public var mobilefuse_sdk: Map<String, String>? = null,
6466
)
6567
}
6668

0 commit comments

Comments
 (0)