Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adds mobile fuse field to User.ext #142

Merged
merged 1 commit into from
Sep 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
android = "8.0.0"
android = "8.0.2"
android-buildtools = "33.0.2"
dokka = "1.8.10"
kotest = "5.5.5"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public class User(
* and the token and campaign is refreshed after the ad playback has
* started.
* @property vungle_buyeruid String token provided by the Vungle SDK to include Vungle in the auction.
* @property mobilefuse_sdk Map<String, String> provided by MobileFuse SDK to include MobileFuse in the auction.
* @property eids Collection of external user ids
*/
@Serializable
Expand All @@ -61,6 +62,7 @@ public class User(
@JvmField @SerialName("unity_buyeruid") public var unity_buyeruid: String? = null,
@JvmField @SerialName("vungle_buyeruid") public var vungle_buyeruid: String? = null,
@JvmField @SerialName("eids") public var eids: Set<EID>? = null,
@JvmField @SerialName("mobilefuse_sdk") public var mobilefuse_sdk: Map<String, String>? = null,
)
}

Expand Down