Class to describe a request that updates a field's properties in a work item type.

interface UpdateProcessWorkItemTypeFieldRequest {
    allowedValues?: string[];
    allowGroups?: boolean;
    defaultValue?: any;
    readOnly?: boolean;
    required?: boolean;
}

Properties

allowedValues?: string[]

The list of field allowed values.

allowGroups?: boolean

Allow setting field value to a group identity. Only applies to identity fields.

defaultValue?: any

The default value of the field.

readOnly?: boolean

If true the field cannot be edited.

required?: boolean

The default value of the field.