/** * 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 { UserDetails } from './'; /** * A paged list. To access additional details append `[start-index:end-index]` to the expand request. For example, `?expand=sharedUsers[10:40]` returns a list starting at item 10 and finishing at item 40. * @export * @interface PagedListUserDetailsApplicationUser */ export interface PagedListUserDetailsApplicationUser { /** * The list of items. * @type {Array} * @memberof PagedListUserDetailsApplicationUser */ readonly items?: Array; /** * The number of items on the page. * @type {number} * @memberof PagedListUserDetailsApplicationUser */ readonly size?: number; /** * The index of the last item returned on the page. * @type {number} * @memberof PagedListUserDetailsApplicationUser */ readonly end_index?: number; /** * The index of the first item returned on the page. * @type {number} * @memberof PagedListUserDetailsApplicationUser */ readonly start_index?: number; /** * The maximum number of results that could be on the page. * @type {number} * @memberof PagedListUserDetailsApplicationUser */ readonly max_results?: number; } export declare function PagedListUserDetailsApplicationUserFromJSON(json: any): PagedListUserDetailsApplicationUser; export declare function PagedListUserDetailsApplicationUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): PagedListUserDetailsApplicationUser; export declare function PagedListUserDetailsApplicationUserToJSON(value?: PagedListUserDetailsApplicationUser): any;