UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

20 lines (19 loc) 531 B
import type * as Intercom from "../../../../index.js"; /** * @example * { * attribute: { * id: "id", * value: "value" * }, * event_id: "event_id", * external_conversation_id: "external_conversation_id", * contact: { * type: "user", * external_id: "external_id" * } * } */ export interface NotifyAttributeCollectedRequest extends Intercom.CustomChannelBaseEvent { attribute: Intercom.CustomChannelAttribute; }