/** * This file was auto-generated by Fern from our API Definition. */ /** * Request to create a new flag * * @example * { * slug: "important", * label: "Important", * colorHex: "#0090FF" * } */ export interface CreateFlagRequest { /** The unique identifier for the flag */ slug: string; /** The human-readable name for the flag */ label: string; /** The hex color code for the flag (e.g., "#0090FF") */ colorHex: string; }