/** * # The AccountingPhoneNumber Object * ### Description * The `AccountingPhoneNumber` object is used to represent a contact's or company's phone number. * * ### Usage Example * Fetch from the `GET CompanyInfo` endpoint and view the company's phone numbers. */ export interface AccountingPhoneNumber { /** 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. */ number?: string; /** The phone number's type. */ type?: string; }