Details of the sanitized JQL query.

interface SanitizedJqlQuery {
    accountId?: null | string;
    errors?: ErrorCollection;
    initialQuery?: string;
    sanitizedQuery?: null | string;
}

Properties

accountId?: null | string

The account ID of the user for whom sanitization was performed.

The list of errors.

initialQuery?: string

The initial query.

sanitizedQuery?: null | string

The sanitized query, if there were no errors.