/** * This file was auto-generated by Fern from our API Definition. */ import * as serializers from "../../../index"; import * as OctoAI from "../../../../api/index"; import * as core from "../../../../core"; import { TuneDetails } from "./TuneDetails"; import { TuneResult } from "./TuneResult"; import { TuneStatus } from "./TuneStatus"; import { TuneType } from "./TuneType"; export declare const Tune: core.serialization.ObjectSchema; export declare namespace Tune { interface Raw { created_at: string; deleted_at?: string | null; description: string; details: TuneDetails.Raw; id: string; name: string; output_lora_ids: string[]; result?: TuneResult.Raw | null; status: TuneStatus.Raw; status_details: string; succeeded_at?: string | null; tenant_id: string; tune_type: TuneType.Raw; updated_at: string; } }