/** * 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 { IssueBean, JsonTypeBean } from './'; /** * The result of a JQL search. * @export * @interface SearchResults */ export interface SearchResults { /** * Any warnings related to the JQL query. * @type {Array} * @memberof SearchResults */ readonly warningMessages?: Array; /** * Expand options that include additional search result details in the response. * @type {string} * @memberof SearchResults */ readonly expand?: string; /** * The index of the first item returned on the page. * @type {number} * @memberof SearchResults */ readonly startAt?: number; /** * The ID and name of each field in the search results. * @type {{ [key: string]: string; }} * @memberof SearchResults */ readonly names?: { [key: string]: string; }; /** * The schema describing the field types in the search results. * @type {{ [key: string]: JsonTypeBean; }} * @memberof SearchResults */ readonly schema?: { [key: string]: JsonTypeBean; }; /** * The maximum number of results that could be on the page. * @type {number} * @memberof SearchResults */ readonly maxResults?: number; /** * The list of issues found by the search. * @type {Array} * @memberof SearchResults */ readonly issues?: Array; /** * The number of results on the page. * @type {number} * @memberof SearchResults */ readonly total?: number; } export declare function SearchResultsFromJSON(json: any): SearchResults; export declare function SearchResultsFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchResults; export declare function SearchResultsToJSON(value?: SearchResults): any;