interface PickListModel {
    id?: string;
    isSuggested?: boolean;
    items?: PickListItemModel[];
    name?: string;
    type?: string;
    url?: string;
}

Hierarchy (View Summary)

Properties

id?: string

ID of the picklist

isSuggested?: boolean

Is input values by user only limited to suggested values

A list of PicklistItemModel

name?: string

Name of the picklist

type?: string

Type of picklist

url?: string

Url of the picklist