/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { WebitelCasesSourceType } from './webitelCasesSourceType'; /** * The data structure representing a source */ export interface WebitelCasesInputSource { /** * A short description of the source * @maxLength 500 */ description?: string; /** * The name of the source * @minLength 2 * @maxLength 100 */ name: string; /** The type of the source */ type: WebitelCasesSourceType; }