/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { GeneralLookup } from './generalLookup.zod'; import type { WebitelCasesSourceType } from './webitelCasesSourceType.zod'; /** * Represents a data source in the contact management system. */ export interface WebitelCasesSource { /** Unix timestamp representing when the source was created. */ createdAt: string; /** Reference to the user who originally created this source. */ createdBy: GeneralLookup; /** * An optional longer explanation of the source's purpose. * @maxLength 500 */ description?: string; /** Unique identifier for the source, generated automatically. */ id: string; /** * A unique, descriptive name for the source. * @minLength 3 * @maxLength 100 */ name: string; /** The type of data source represented by this entry. */ type: WebitelCasesSourceType; /** Unix timestamp representing the most recent update. */ updatedAt: string; /** Reference to the user who most recently modified this source. */ updatedBy: GeneralLookup; }