intercom-client
Version:
Official Node bindings to the Intercom API
15 lines (14 loc) • 410 B
TypeScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
/**
* 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;
}