/* tslint:disable */ /* eslint-disable */ /** * customfieldsets * 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. */ /** * Wrapper holds the display properties of a Custom Field Set */ export interface CustomFieldSetDisplaySettings { /** * This is used only for builtIn custom field sets and can have two possible values: True - when this is a \"mambu\" field set, False - when this is a tenant-defined field set */ builtIn?: boolean; /** * User-provided name of the custom field set */ displayName?: string; /** * Represents the order of the custom field set (starts from 0) */ position?: number; }