KustomerCore.sendTypingActivity()
Send customer typing activity to Kustomer
First, initialize chat
You must initialize with
KustomerCore.init()
before you can execute any additional Core SDK methods
Examples
// Send typing activity
KustomerCore.sendTypingActivity({
conversationId: 'SOME_ID',
typing: true,
});
Syntax
KustomerCore.sendTypingActivity(options)
Parameter | Type | Description |
---|---|---|
options | Object | Optional An options object allowing you to modify this method call. All possible options are listed below. |
options
options
Property | Type | Description |
---|---|---|
conversationId | String | Required The conversation unique ID. |
typing | Boolean | Required Whether or not the customer is typing |
Updated almost 4 years ago