/** * This file was auto-generated by Fern from our API Definition. */ /** * Flag data for mutation operations * * @example * { * label: "Important", * colorHex: "#E54D2E" * } */ export interface FlagMutationData { /** The flag label */ label?: string; /** The flag color in hex format */ colorHex?: string; }