/** * Generated by Orval * Do not edit manually. * See `gen:api` script in package.json */ import type { ConstraintSchema } from './constraintSchema'; /** * Data used to create or update a segment */ export interface UpsertSegmentSchema { /** The list of constraints that make up this segment */ constraints: ConstraintSchema[]; /** A description of what the segment is for */ description?: string | null; /** The name of the segment */ name: string; /** The project the segment belongs to if any. */ project?: string | null; }