/** * This file was auto-generated by Fern from our API Definition. */ import * as serializers from "../index"; import * as Vellum from "../../api/index"; import * as core from "../../core"; import { EntityStatus } from "./EntityStatus"; import { EnvironmentEnum } from "./EnvironmentEnum"; import { VellumVariable } from "./VellumVariable"; export declare const DeploymentRead: core.serialization.ObjectSchema; export declare namespace DeploymentRead { interface Raw { id: string; created: string; label: string; name: string; status?: EntityStatus.Raw | null; environment?: (EnvironmentEnum.Raw | null) | null; last_deployed_on: string; input_variables: VellumVariable.Raw[]; description?: (string | null) | null; active_model_version_ids?: (string[] | null) | null; last_deployed_history_item_id: string; } }