/** * This file was auto-generated by Fern from our API Definition. */ /** * Request to update an existing flag * * @example * { * label: "Updated Important", * colorHex: "#30A46C" * } */ export interface UpdateFlagRequest { /** The new label for the flag */ label?: string; /** The new hex color code for the flag */ colorHex?: string; /** The new slug for the flag */ newSlug?: string; }