/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../../../../index"; /** * @example * { * name: "x", * packages: [{ * version: "x", * name: "x" * }, { * version: "x", * name: "x" * }], * tag: "x" * } */ export interface CreateContainerImageRequest { name: string; packages: Vellum.CodeExecutionPackageRequest[]; tag: string; userScript?: string | null; isHotswappable?: boolean; serverVersion?: string | null; }