UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

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