We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ad9ad2 commit f2f62e1Copy full SHA for f2f62e1
android/src/main/java/com/mparticle/react/MParticleModule.java
@@ -598,6 +598,16 @@ else if (isPromotion) {
598
if (map.hasKey("customAttributes")) {
599
builder.customAttributes(ConvertStringMap(map.getMap("customAttributes")));
600
}
601
+ if (map.hasKey("currency")) {
602
+ builder.currency(map.getString("currency"));
603
+ }
604
+ if (map.hasKey("checkoutStep")) {
605
+ builder.checkoutStep(map.getInt("checkoutStep"));
606
607
+ if (map.hasKey("checkoutOptions")) {
608
+ builder.checkoutOptions(map.getString("checkoutOptions"));
609
610
+
611
612
return builder.build();
613
0 commit comments