List of string of inputs

interface MandatoryFieldValue {
    retain?: null | boolean;
    type?: null | "raw" | "adf";
    value: string[];
}

Properties

Properties

retain?: null | boolean

If true, will try to retain original non-null issue field values on move.

type?: null | "raw" | "adf"

Will treat as MandatoryFieldValue if type is raw or empty

value: string[]

Value for each field. Provide a list of strings for non-ADF fields.