Skip to content

Commit

Permalink
adds mintegral_sdk field to User.ext (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
renam authored Oct 30, 2024
1 parent b073441 commit 53ce09c
Showing 1 changed file with 2 additions and 0 deletions.
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

0 comments on commit 53ce09c

Please sign in to comment.