/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../index"; /** * The unsuccessful response from the model containing an error of what went wrong. */ export interface RejectedExecutePromptResponse { meta?: Vellum.PromptExecutionMeta; /** The subset of the raw response from the model that the request opted into with `expand_raw`. */ raw?: Record; /** The ID of the execution. */ executionId: string; state: "REJECTED"; error: Vellum.VellumError; }