import type * as Extend from "../../../../index"; /** * @example * {} */ export interface ProcessorListRequest { /** Filter processors by type */ type?: Extend.LegacyProcessorType; /** Token for retrieving the next page of results */ nextPageToken?: string; /** Maximum number of processors to return per page */ maxPageSize?: number; /** Field to sort by */ sortBy?: Extend.ProcessorListRequestSortBy; /** Sort direction */ sortDir?: Extend.ProcessorListRequestSortDir; /** The workspace ID to target. **Required** when using an organization-scoped API key; optional for workspace-scoped keys (the key is already tied to a workspace). See [Authentication](https://docs.extend.ai/2026-02-09/developers/authentication) for details on API key scopes. */ "x-extend-workspace-id"?: string; }