/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * Changes to make to an existing sheet */ export interface SheetUpdate { /** The ID of the Sheet. */ id?: Flatfile.SheetId; /** The ID of the Workbook. */ workbookId?: Flatfile.WorkbookId; /** Describes shape of data as well as behavior. */ config?: Flatfile.SheetConfig; /** Useful for any contextual metadata regarding the sheet. Store any valid json */ metadata?: any; /** The scoped namespace of the Sheet. */ namespace?: string; /** Date the sheet was last updated */ updatedAt?: Date; /** Date the sheet was created */ createdAt?: Date; }