Interface CustomFieldContextDefaultValueMultipleOption

The default value for a multi-select custom field.

interface CustomFieldContextDefaultValueMultipleOption {
    contextId: string;
    optionIds: string[];
    type: string;
}

Properties

contextId: string

The ID of the context.

optionIds: string[]

The list of IDs of the default options.

type: string