/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; export interface UniqueConstraintConfig { /** Ignore casing when determining uniqueness */ caseSensitive?: boolean; /** Do not flag empty values as duplicate */ ignoreEmpty?: boolean; /** Custom validation message to display when the constraint fails */ message?: string; /** Validation level (error, warn, info). Defaults to error. */ level?: Flatfile.ValidationType; }