/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { FileTypeEnum } from './FileTypeEnum'; export type AgentSkillResource = { readonly id: number; skill: number; file_type: FileTypeEnum; filename: string; /** * Text content for script/reference resources. */ content?: string; /** * Binary file for asset resources. */ file?: string | null; readonly created_at: string; readonly updated_at: string; };