import type * as Intercom from "../index.js"; /** * Contains metadata if the message was sent as an email */ export interface EmailMessageMetadata { /** The subject of the email */ subject?: string; /** A list of an email address headers. */ email_address_headers?: Intercom.EmailAddressHeader[]; }