import type * as Merge from "../../../index"; /** * # The PhoneNumber Object * ### Description * The `PhoneNumber` object is used to represent a candidate's phone number. * ### Usage Example * Fetch from the `GET Candidate` endpoint and view their phone numbers. */ export interface PhoneNumberRequest { /** The phone number. */ value?: string; /** * The type of phone number. * * * `HOME` - HOME * * `WORK` - WORK * * `MOBILE` - MOBILE * * `SKYPE` - SKYPE * * `OTHER` - OTHER */ phoneNumberType?: Merge.ats.PhoneNumberRequestPhoneNumberType; integrationParams?: Record; linkedAccountParams?: Record; }