import type * as Merge from "../../../index"; /** * # The EmailAddress Object * ### Description * The `EmailAddress` object is used to represent a candidate's email address. * ### Usage Example * Fetch from the `GET Candidate` endpoint and view their email addresses. */ export interface EmailAddressRequest { /** The email address. */ value?: string; /** * The type of email address. * * * `PERSONAL` - PERSONAL * * `WORK` - WORK * * `OTHER` - OTHER */ emailAddressType?: Merge.ats.EmailAddressRequestEmailAddressType; integrationParams?: Record; linkedAccountParams?: Record; }