/* tslint:disable */ /* eslint-disable */ /** * customfields * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Represents the settings for field input validation. */ export interface CustomFieldValueValidationSettings { /** * `TRUE` if this field does not allow duplicate values, `FALSE` otherwise. */ unique?: boolean; /** * The expected format for the input. */ validationPattern?: string; }