# CustomFieldUsage

Represents the usage settings of the custom field definition.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**_default** | **boolean** | &#x60;TRUE&#x60; if the field is displayed by default on create or edit pages for this record type, &#x60;FALSE&#x60; otherwise. | [optional] [default to undefined]
**objectKey** | **string** | The key of the record type. | [optional] [default to undefined]
**required** | **boolean** | &#x60;TRUE&#x60; if the field is required for this record type, &#x60;FALSE&#x60; otherwise. | [optional] [default to undefined]

## Example

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

const instance: CustomFieldUsage = {
    _default,
    objectKey,
    required,
};
```

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