/** * 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. */ /** * A field auto-complete suggestion. * @export * @interface AutoCompleteSuggestion */ export interface AutoCompleteSuggestion { /** * The value of a suggested item. * @type {string} * @memberof AutoCompleteSuggestion */ value?: string; /** * The display name of a suggested item. If `fieldValue` or `predicateValue` are provided, the matching text is highlighted with the HTML bold tag. * @type {string} * @memberof AutoCompleteSuggestion */ displayName?: string; } export declare function AutoCompleteSuggestionFromJSON(json: any): AutoCompleteSuggestion; export declare function AutoCompleteSuggestionFromJSONTyped(json: any, ignoreDiscriminator: boolean): AutoCompleteSuggestion; export declare function AutoCompleteSuggestionToJSON(value?: AutoCompleteSuggestion): any;