/** * 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 { AssetType } from "./AssetType"; import { Data } from "./Data"; import { FileStructure } from "./FileStructure"; import { Status } from "./Status"; export declare const Asset: core.serialization.ObjectSchema; export declare namespace Asset { interface Raw { asset_type: AssetType.Raw; created_at: string; data: Data.Raw; description: string; file_structure?: FileStructure.Raw | null; hf_repo?: string | null; id: string; is_public?: boolean | null; name: string; size_bytes: number; status: Status.Raw; status_details: string; status_info?: Record | null; tenant_uuid: string; url?: string | null; } }