# CustomFieldDisplaySettings

Represents the display settings of a custom field definition.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**builtInId** | **string** | The original ID of the built-in custom field definition. | [optional] [default to undefined]
**description** | **string** | The user-provided description of the custom field definition. | [optional] [default to undefined]
**displayName** | **string** | The user-provided name of the custom field definition. | [optional] [default to undefined]
**fieldSize** | **string** | The custom field value display size in the UI. | [optional] [default to undefined]
**position** | **number** | The custom field definition position in the custom field set. | [optional] [default to undefined]

## Example

```typescript
import { CustomFieldDisplaySettings } from './api';

const instance: CustomFieldDisplaySettings = {
    builtInId,
    description,
    displayName,
    fieldSize,
    position,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
