From 24c7fd5fcbd7863f658ffa78ec5fd9474e61b370 Mon Sep 17 00:00:00 2001 From: jorgemucientesfayos Date: Mon, 9 Sep 2024 16:37:32 +0200 Subject: [PATCH] Adds new campaign_id field to map from push notification payload --- .../wordpress/android/fluxc/tools/FormattableContentMapper.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fluxc/src/main/java/org/wordpress/android/fluxc/tools/FormattableContentMapper.kt b/fluxc/src/main/java/org/wordpress/android/fluxc/tools/FormattableContentMapper.kt index 0a331f8ffb..103a368eb0 100644 --- a/fluxc/src/main/java/org/wordpress/android/fluxc/tools/FormattableContentMapper.kt +++ b/fluxc/src/main/java/org/wordpress/android/fluxc/tools/FormattableContentMapper.kt @@ -50,7 +50,8 @@ data class FormattableMeta( @SerializedName("user") val user: Long? = null, @SerializedName("comment") val comment: Long? = null, @SerializedName("post") val post: Long? = null, - @SerializedName("order") val order: Long? = null + @SerializedName("order") val order: Long? = null, + @SerializedName("campaign_id") val campaignId: Long? = null ) data class Links(