/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { WebitelContactsLookup } from './webitelContactsLookup'; /** * A Contact's associated Tag. * Output purpose only. */ export interface WebitelContactsLabel { /** 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; /** * REQUIRED. Tag value; * NOTE: Keep in mind, hashtags are not case-sensitive, * but adding capital letters does make them easier to read: * #MakeAWish vs. #makeawish. */ label?: string; /** * 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; }