Function get_issue_picker_resource

Source
pub async fn get_issue_picker_resource(
    configuration: &Configuration,
    query: Option<&str>,
    current_jql: Option<&str>,
    current_issue_key: Option<&str>,
    current_project_id: Option<&str>,
    show_sub_tasks: Option<bool>,
    show_sub_task_parent: Option<bool>,
) -> Result<IssuePickerSuggestions, Error<GetIssuePickerResourceError>>
Expand description

Returns lists of issues matching a query string. Use this resource to provide auto-completion suggestions when the user is looking for an issue using a word or string. This operation returns two lists: * History Search which includes issues from the user’s history of created, edited, or viewed issues that contain the string in the query parameter. * Current Search which includes issues that match the JQL expression in currentJQL and contain the string in the query parameter. This operation can be accessed anonymously. Permissions required: None.