/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; export interface CompositeUniqueConstraint { /** The name of the constraint */ name: string; /** The fields that must be unique together */ fields: string[]; /** Fields that, when empty, will cause this unique constraint to be ignored */ requiredFields?: string[]; strategy: Flatfile.CompositeUniqueConstraintStrategy; /** Configuration options for the composite unique constraint */ config?: Flatfile.CompositeUniqueConstraintConfig; }