Products — Click

The LiSA Player dispatches a message when a user clicks a product card or sticker.

This message is sent by the LiSA Player to the host app / environment.

Properties

Along with all standard Product message properties, a Click message includes the following additional properties:

Name
Type
Description

messageType

Required.

lsc:product:click

Legacy Properties

circle-exclamation
Name
Type
Description

action

Required.

click ⚠️ Please use messageType instead.

target

Required.

carousel.item ⚠️ Please use messageType instead.


Type Definition

interface ProductClickMessage extends Omit<
  ProductMessage,
  'messageType'
> {
  messageType: 'lsc:product:click';
}

Examples

Last updated