UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

11 lines (10 loc) 458 B
import type * as Intercom from "../index.js"; /** * Payload of the request to reply on behalf of a contact using their `intercom_user_id` */ export interface ContactReplyIntercomUserIdRequest extends Intercom.ContactReplyBaseRequest { /** The identifier for the contact as given by Intercom. */ intercom_user_id: string; /** A list of files that will be added as attachments. */ attachment_files?: Intercom.ConversationAttachmentFiles[]; }