/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../../../../index"; /** * @example * { * label: "x" * } */ export interface DocumentIndexUpdateRequest { /** A human-readable label for the document index */ label: string; /** * The current status of the document index * * * `ACTIVE` - Active * * `ARCHIVED` - Archived * * `PENDING_DELETION` - Pending Deletion */ status?: Vellum.EntityStatus; }