/** * 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 { FoundGroups, FoundUsers } from './'; /** * List of users and groups found in a search. * @export * @interface FoundUsersAndGroups */ export interface FoundUsersAndGroups { /** * * @type {FoundGroups} * @memberof FoundUsersAndGroups */ groups?: FoundGroups; /** * * @type {FoundUsers} * @memberof FoundUsersAndGroups */ users?: FoundUsers; } export declare function FoundUsersAndGroupsFromJSON(json: any): FoundUsersAndGroups; export declare function FoundUsersAndGroupsFromJSONTyped(json: any, ignoreDiscriminator: boolean): FoundUsersAndGroups; export declare function FoundUsersAndGroupsToJSON(value?: FoundUsersAndGroups): any;