/** * This file was auto-generated by Fern from our API Definition. */ /** * Changes to make to an existing sheet * * @example * { * name: "New Sheet Name", * metadata: { * "rowHeaders": [ * 6 * ] * } * } */ export interface SheetUpdateRequest { /** The name of the Sheet. */ name?: string; /** The slug of the Sheet. */ slug?: string; /** Useful for any contextual metadata regarding the sheet. Store any valid json */ metadata?: any; }