/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../../index"; /** * @example * { * spaceId: "us_sp_YOUR_ID" * } */ export interface ListWorkbooksRequest { /** * The associated Space ID of the Workbook. */ spaceId?: Flatfile.SpaceId; /** * Filter by name. Precede with - to negate the filter */ name?: string; /** * Filter by namespace. Precede with - to negate the filter */ namespace?: string; /** * Filter by label. Precede with - to negate the filter */ label?: string; /** * Filter by treatment. */ treatment?: string; /** * Include sheets for the workbook (default true) */ includeSheets?: boolean; /** * Include counts for the workbook. **DEPRECATED** Counts will return 0s. Use GET /sheets/:sheetId/counts */ includeCounts?: boolean; }