import type * as Extend from "../../../../index"; /** * @example * { * nextPageToken: "xK9mLPqRtN3vS8wF5hB2cQ==:zWvUxYjM4nKpL7aDgE9HbTcR2mAyX3/Q+CNkfBSw1dZ=" * } */ export interface SplittersListRequest { nextPageToken?: Extend.NextPageToken; maxPageSize?: Extend.MaxPageSize; sortBy?: Extend.SortBy; sortDir?: Extend.SortDir; /** 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; }