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 mintegral_sdk field to User.ext in Kotlin #158

Merged
merged 1 commit into from
Oct 30, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -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<String, String> provided by MobileFuse SDK to include MobileFuse in the auction.
* @property mintegral_sdk Map<String, String> containing buyeruid and sdkv strings to include Mintegral in the auction.
* @property eids Collection of external user ids
*/
@Serializable
Expand All @@ -64,6 +65,7 @@ public class User(
@JvmField @SerialName("vungle_buyeruid") public var vungle_buyeruid: String? = null,
@JvmField @SerialName("eids") public var eids: Set<EID>? = null,
@JvmField @SerialName("mfx_buyerdata") public var mfx_buyerdata: Map<String, String>? = null,
@JvmField @SerialName("mintegral_sdk") public var mintegral_sdk: Map<String, String>? = null,
)
}

Expand Down
Loading