Represents the event indicating that a participant (other than this user) has stopped typing. This payload will be passed as a parameter to the registered event handler that will be invoked by SDK when a participant has stopped typing.

interface TypingStopped {
    conversationId?: string;
    eventDate: Date;
    participant: Participant;
}

Hierarchy

  • MessagingEventPayload
    • TypingStopped

Properties

conversationId?: string

The unique 36 character internal id that represents the conversation.

eventDate: Date

The date-time when the event was generated by the Contact Center

participant: Participant

The participant who stopped typing.