interface RequestTypeFieldDto {
    defaultValues?: RequestTypeFieldValueDto[];
    description?: string;
    fieldId?: string;
    jiraSchema?: JsonTypeBean;
    name?: string;
    presetValues?: string[];
    required?: boolean;
    validValues?: RequestTypeFieldValueDto[];
    visible?: boolean;
}

Properties

defaultValues?: RequestTypeFieldValueDto[]

List of default values for the field.

description?: string

Description of the field.

fieldId?: string

ID of the field.

jiraSchema?: JsonTypeBean

Jira specific implementation details for the field in the UI.

name?: string

Name of the field.

presetValues?: string[]

List of preset values for the field.

required?: boolean

Indicates if the field is required (true) or not (false).

validValues?: RequestTypeFieldValueDto[]

List of valid values for the field.

visible?: boolean