/* tslint:disable */ /* eslint-disable */ /** * configuration/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 display settings of a custom field definition. */ export interface DisplaySettings { /** * The user-provided description of the custom field definition. */ description?: string; /** * The user-provided name of the custom field definition. */ displayName: string; /** * The custom field value display size in the UI. */ fieldSize: DisplaySettingsFieldSizeEnum; } export const DisplaySettingsFieldSizeEnum = { Short: 'SHORT', Long: 'LONG', } as const; export type DisplaySettingsFieldSizeEnum = (typeof DisplaySettingsFieldSizeEnum)[keyof typeof DisplaySettingsFieldSizeEnum];