/** * # The PhoneNumber Object * ### Description * The `PhoneNumber` object is used to represent an entity's phone number. * ### Usage Example * Fetch from the `GET Contact` endpoint and view their phone numbers. */ export interface PhoneNumberRequest { /** The phone number. */ phoneNumber?: string; /** The phone number's type. */ phoneNumberType?: string; integrationParams?: Record; linkedAccountParams?: Record; }