/** * # The EmailAddress Object * ### Description * The `EmailAddress` object is used to represent an entity's email address. * ### Usage Example * Fetch from the `GET Contact` endpoint and view their email addresses. */ export interface EmailAddressRequest { /** The email address. */ emailAddress?: string; /** The email address's type. */ emailAddressType?: string; integrationParams?: Record; linkedAccountParams?: Record; }