/** * 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"; import { WorkflowDeploymentDisplayData } from "./WorkflowDeploymentDisplayData"; export declare const WorkflowDeploymentRead: core.serialization.ObjectSchema; export declare namespace WorkflowDeploymentRead { interface Raw { id: string; name: string; label: string; status?: EntityStatus.Raw | null; environment?: (EnvironmentEnum.Raw | null) | null; created: string; last_deployed_on: string; last_deployed_history_item_id: string; input_variables: VellumVariable.Raw[]; output_variables: VellumVariable.Raw[]; description?: (string | null) | null; display_data?: (WorkflowDeploymentDisplayData.Raw | null) | null; } }