/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../../../../index"; /** * @example * {} */ export interface DocumentIndexesListRequest { /** * Number of results to return per page. */ limit?: number | null; /** * The initial index from which to return the results. */ offset?: number | null; /** * Which field to use when ordering the results. */ ordering?: string | null; /** * Search for document indices by name or label */ search?: string | null; /** * Filter down to only document indices that have a status matching the status specified * * * `ACTIVE` - Active * * `ARCHIVED` - Archived * * `PENDING_DELETION` - Pending Deletion */ status?: Vellum.DocumentIndexesListRequestStatus | null; }