/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../index"; /** * A user input representing a Vellum Function Call value */ export interface FunctionCallInput { /** The variable's name */ name: string; type: "FUNCTION_CALL"; value: Vellum.FunctionCall; }