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