/** * This file was auto-generated by Fern from our API Definition. */ /** * Response from bulk flag mutation * * @example * { * success: true, * jobId: "job_12345" * } */ export interface BulkMutateFlagsResponse { /** Whether the operation was successfully queued */ success: boolean; /** The ID of the job handling the bulk mutation */ jobId: string; }