File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
kotlin/src/commonMain/kotlin/com/adsbynimbus/openrtb/request Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 1
1
[versions ]
2
- android = " 8.0.0 "
2
+ android = " 8.0.2 "
3
3
android-buildtools = " 33.0.2"
4
4
dokka = " 1.8.10"
5
5
kotest = " 5.5.5"
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ public class User(
52
52
* and the token and campaign is refreshed after the ad playback has
53
53
* started.
54
54
* @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.
55
56
* @property eids Collection of external user ids
56
57
*/
57
58
@Serializable
@@ -61,6 +62,7 @@ public class User(
61
62
@JvmField @SerialName(" unity_buyeruid" ) public var unity_buyeruid : String? = null ,
62
63
@JvmField @SerialName(" vungle_buyeruid" ) public var vungle_buyeruid : String? = null ,
63
64
@JvmField @SerialName(" eids" ) public var eids : Set <EID >? = null ,
65
+ @JvmField @SerialName(" mobilefuse_sdk" ) public var mobilefuse_sdk : Map <String , String >? = null ,
64
66
)
65
67
}
66
68
You can’t perform that action at this time.
0 commit comments