Jira.js - Jira Cloud API library
    Preparing search index...

    Interface RequestTypeField

    interface RequestTypeField {
        defaultValues?: RequestTypeFieldValue[];
        description?: string;
        fieldId?: string;
        jiraSchema?: ServiceDeskModels.JsonType;
        name?: string;
        presetValues?: string[];
        required?: boolean;
        validValues?: RequestTypeFieldValue[];
        visible?: boolean;
    }
    Index

    Properties

    defaultValues?: RequestTypeFieldValue[]

    List of default values for the field.

    description?: string

    Description of the field.

    fieldId?: string

    ID of the field.

    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?: RequestTypeFieldValue[]

    List of valid values for the field.

    visible?: boolean