/** * 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 { FoundGroup } from './'; /** * The list of groups found in a search, including header text (Showing X of Y matching groups) and total of matched groups. * @export * @interface FoundGroups */ export interface FoundGroups { /** * * @type {Array} * @memberof FoundGroups */ groups?: Array; /** * The total number of groups found in the search. * @type {number} * @memberof FoundGroups */ total?: number; /** * Header text indicating the number of groups in the response and the total number of groups found in the search. * @type {string} * @memberof FoundGroups */ header?: string; } export declare function FoundGroupsFromJSON(json: any): FoundGroups; export declare function FoundGroupsFromJSONTyped(json: any, ignoreDiscriminator: boolean): FoundGroups; export declare function FoundGroupsToJSON(value?: FoundGroups): any;