/** * 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 { User } from './'; /** * A paginated list of users sharing the filter. This includes users that are members of the groups or can browse the projects that the filter is shared with. * @export * @interface UserList */ export interface UserList { /** * The list of items. * @type {Array} * @memberof UserList */ readonly items?: Array; /** * The number of items on the page. * @type {number} * @memberof UserList */ readonly size?: number; /** * The index of the last item returned on the page. * @type {number} * @memberof UserList */ readonly end_index?: number; /** * The index of the first item returned on the page. * @type {number} * @memberof UserList */ readonly start_index?: number; /** * The maximum number of results that could be on the page. * @type {number} * @memberof UserList */ readonly max_results?: number; } export declare function UserListFromJSON(json: any): UserList; export declare function UserListFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserList; export declare function UserListToJSON(value?: UserList): any;