/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { WebitelContactsLookup } from './webitelContactsLookup.zod'; /** * A Contact's timezone preference. */ export interface ContactsTimezone { /** 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; /** * Indicates whether this association is the default * among others of the same type. */ primary?: boolean; /** Timezone dictionary reference value associated. */ timezone?: 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; }