UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

18 lines (17 loc) 474 B
import type * as Intercom from "../../../../index.js"; /** * @example * { * body: "body", * event_id: "event_id", * external_conversation_id: "external_conversation_id", * contact: { * type: "user", * external_id: "external_id" * } * } */ export interface NotifyNewMessageRequest extends Intercom.CustomChannelBaseEvent { /** The message content sent by the user. */ body: string; }