/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * A view * * @example * { * id: "us_vi_YOUR_ID", * sheetId: "us_sh_YOUR_ID", * name: "My View", * config: { * filter: Flatfile.Filter.Error, * filterField: "email", * q: "firstname like %John%", * sortField: "email", * sortDirection: Flatfile.SortDirection.Asc * }, * createdBy: "us_usr_YOUR_ID" * } */ export interface View { /** The ID of the view */ id: Flatfile.ViewId; /** The associated sheet ID of the view */ sheetId: Flatfile.SheetId; /** The name of the view */ name: string; /** The view filters of the view */ config: Flatfile.ViewConfig; /** ID of the actor who created the view */ createdBy: string; }