/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { SuggestedIssue } from './'; /** * A type of issue suggested for use in auto-completion. * @export * @interface IssuePickerSuggestionsIssueType */ export interface IssuePickerSuggestionsIssueType { /** * If issue suggestions are found, returns a message indicating the number of issues suggestions found and returned. * @type {string} * @memberof IssuePickerSuggestionsIssueType */ readonly sub?: string; /** * A list of issues suggested for use in auto-completion. * @type {Array} * @memberof IssuePickerSuggestionsIssueType */ readonly issues?: Array; /** * The label of the type of issues suggested for use in auto-completion. * @type {string} * @memberof IssuePickerSuggestionsIssueType */ readonly label?: string; /** * The ID of the type of issues suggested for use in auto-completion. * @type {string} * @memberof IssuePickerSuggestionsIssueType */ readonly id?: string; /** * If no issue suggestions are found, returns a message indicating no suggestions were found, * @type {string} * @memberof IssuePickerSuggestionsIssueType */ readonly msg?: string; } export declare function IssuePickerSuggestionsIssueTypeFromJSON(json: any): IssuePickerSuggestionsIssueType; export declare function IssuePickerSuggestionsIssueTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): IssuePickerSuggestionsIssueType; export declare function IssuePickerSuggestionsIssueTypeToJSON(value?: IssuePickerSuggestionsIssueType): any;