* Create an `inAppClick` event for the specified message on the current user's profile * for manual tracking purposes. Iterable's SDK automatically tracks in-app message clicks when you use the * SDK's default rendering. Click events refer to click events within the in-app message to distingui
(
message: IterableInAppMessage,
location: IterableInAppLocation,
clickedUrl: string
)
| 611 | * by calling this method. |
| 612 | */ |
| 613 | static trackInAppClick( |
| 614 | message: IterableInAppMessage, |
| 615 | location: IterableInAppLocation, |
| 616 | clickedUrl: string |
| 617 | ) { |
| 618 | IterableApi.trackInAppClick({ message, location, clickedUrl }); |
| 619 | } |
| 620 | |
| 621 | /** |
| 622 | * Create an `inAppClose` event for the specified message on the current |
nothing calls this directly
no test coverage detected