/** * 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 { GroupName } from './'; /** * * @export * @interface SimpleListWrapperGroupName */ export interface SimpleListWrapperGroupName { /** * * @type {object} * @memberof SimpleListWrapperGroupName */ pagingCallback?: object; /** * * @type {number} * @memberof SimpleListWrapperGroupName */ size?: number; /** * * @type {Array} * @memberof SimpleListWrapperGroupName */ items?: Array; /** * * @type {object} * @memberof SimpleListWrapperGroupName */ callback?: object; /** * * @type {number} * @memberof SimpleListWrapperGroupName */ max_results?: number; } export declare function SimpleListWrapperGroupNameFromJSON(json: any): SimpleListWrapperGroupName; export declare function SimpleListWrapperGroupNameFromJSONTyped(json: any, ignoreDiscriminator: boolean): SimpleListWrapperGroupName; export declare function SimpleListWrapperGroupNameToJSON(value?: SimpleListWrapperGroupName): any;