/** * Generated by Orval * Do not edit manually. * See `gen:api` script in package.json */ import type { PlaygroundConstraintSchema } from './playgroundConstraintSchema.js'; /** * The evaluated result of a segment as used by the Playground. */ export interface PlaygroundSegmentSchema { /** The list of constraints in this segment. */ constraints: PlaygroundConstraintSchema[]; /** The segment's id. */ id: number; /** The name of the segment. */ name: string; /** Whether this was evaluated as true or false. */ result: boolean; }