import type * as Intercom from "../index.js"; /** * Payload of the request to reply on behalf of a contact using their `email` */ export interface ContactReplyTicketEmailRequest extends Intercom.ContactReplyBaseRequest { /** The email you have defined for the user. */ email: string; }