/** * # 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 PhoneNumber { /** The datetime that this object was created by Merge. */ createdAt?: Date; /** The datetime that this object was modified by Merge. */ modifiedAt?: Date; /** The phone number. */ phoneNumber?: string; /** The phone number's type. */ phoneNumberType?: string; }