/** * 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 { GroupLabel } from './'; /** * A group found in a search. * @export * @interface FoundGroup */ export interface FoundGroup { /** * The name of the group. * @type {string} * @memberof FoundGroup */ name?: string; /** * * @type {Array} * @memberof FoundGroup */ labels?: Array; /** * The group name with the matched query string highlighted with the HTML bold tag. * @type {string} * @memberof FoundGroup */ html?: string; } export declare function FoundGroupFromJSON(json: any): FoundGroup; export declare function FoundGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): FoundGroup; export declare function FoundGroupToJSON(value?: FoundGroup): any;