/** * Contains data for an email address header for a conversation part that was sent as an email. */ export interface EmailAddressHeader { /** The type of email address header */ type?: string; /** The email address */ email_address?: string; /** The name associated with the email address */ name?: string; }