/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../../index"; /** * @example * { * name: "NewFileName" * } */ export interface UpdateFileRequest { workbookId?: Flatfile.WorkbookId; /** The name of the file */ name?: string; /** The storage mode of file to update */ mode?: Flatfile.Mode; status?: Flatfile.ModelFileStatusEnum; /** The actions attached to the file */ actions?: Flatfile.Action[]; }