Skip to content
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 @@ -86,6 +86,15 @@ public String getPayloadData(String key) {
return (_payloadData != null) ? _payloadData.getString(key, null): null;
}

/**
* Retrieves all of the payload as a single Bundle Object
* @return Bundle
*/

public Bundle getPayloadData() {
return _payloadData;
}

/**
* Returns the attribution information ({@link IterableAttributionInfo}) for last push open
* or app link click from an email.
Expand Down