* Get the payload of the last push notification with which the user * opened the application (by clicking an action button, etc.). * * @example * ```typescript * Iterable.getLastPushPayload().then((payload) => { * // Do something with the payload * }); * ```
()
| 357 | * ``` |
| 358 | */ |
| 359 | static getLastPushPayload(): Promise<unknown> { |
| 360 | return IterableApi.getLastPushPayload(); |
| 361 | } |
| 362 | |
| 363 | /** |
| 364 | * Get the stored attribution information -- possibly based on a recent deep link click. |
nothing calls this directly
no test coverage detected