/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { WebitelContactsLookup } from './webitelContactsLookup.zod'; /** * The Contact's phone number. */ export interface ContactsPhoneNumber { /** The user who created this Field. */ createdAt?: string; /** Timestamp(milli) of the Field creation. */ createdBy?: WebitelContactsLookup; /** * Unique ID of the latest version of the update. * This ID changes after any update to the underlying value(s). */ etag?: string; /** The unique ID of the association. Never changes. */ id?: string; /** The phone number. */ number?: string; /** Indicates whether this phone number is default within other channels of the same type(phone). */ primary?: boolean; type?: WebitelContactsLookup; /** * Timestamp(milli) of the last Field update. * Take part in Etag generation. */ updatedAt?: string; /** The user who performed last Update. */ updatedBy?: WebitelContactsLookup; /** Version of the latest update. Numeric sequence. */ ver?: number; verified?: boolean; }