/**
 * This file was auto-generated by Fern from our API Definition.
 */
import * as Intercom from "../../../index";
/**
 * Payload of the request to reply on behalf of a contact using their `email`
 */
export interface ContactReplyEmailRequest extends Intercom.unstable.ContactReplyBaseRequest {
    /** The email you have defined for the user. */
    email: string;
    /** A list of files that will be added as attachments. */
    attachment_files?: Intercom.unstable.ConversationAttachmentFiles[];
}
