Details of a field configuration.

interface FieldConfiguration {
    description: string;
    id: number;
    isDefault?: boolean;
    name: string;
}

Properties

description: string

The description of the field configuration.

id: number

The ID of the field configuration.

isDefault?: boolean

Whether the field configuration is the default.

name: string

The name of the field configuration.