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.
2 parents a7a22a9 + 1109f75 commit 56831b3Copy full SHA for 56831b3
iterableapi/src/main/java/com/iterable/iterableapi/IterableApi.java
@@ -86,6 +86,15 @@ public String getPayloadData(String key) {
86
return (_payloadData != null) ? _payloadData.getString(key, null): null;
87
}
88
89
+ /**
90
+ * Retrieves all of the payload as a single Bundle Object
91
+ * @return Bundle
92
+ */
93
+
94
+ public Bundle getPayloadData() {
95
+ return _payloadData;
96
+ }
97
98
/**
99
* Returns the attribution information ({@link IterableAttributionInfo}) for last push open
100
* or app link click from an email.
0 commit comments