/** * Generated by Orval * Do not edit manually. * See `gen:api` script in package.json */ import type { ConstraintSchema } from './constraintSchema'; export interface UpsertSegmentSchema { name: string; description?: string | null; project?: string | null; constraints: ConstraintSchema[]; }