/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * A flag object * * @example * { * id: "flag_12345", * slug: "important", * label: "Important", * colorHex: "#E54D2E", * workbookId: "us_wb_YOUR_ID", * createdAt: "2023-10-30T20:04:32.074Z", * updatedAt: "2023-10-30T20:04:32.074Z" * } */ export interface FlagResponse { /** The unique identifier for the flag */ id: string; /** The flag slug */ slug: string; /** The flag label */ label: string; /** The hex color code for the flag */ colorHex: string; /** The workbook this flag belongs to */ workbookId: Flatfile.WorkbookId; /** When the flag was created */ createdAt: Date; /** When the flag was last updated */ updatedAt: Date; }