import type * as Intercom from "../../../../index.mjs"; /** * @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; }