UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

12 lines (11 loc) 337 B
/** * 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; }