/** * Jira Software Cloud API * Jira Software Cloud REST API documentation * * The version of the OpenAPI document: 1001.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { InlineResponse2002Values } from './'; /** * * @export * @interface InlineResponse2002 */ export interface InlineResponse2002 { /** * * @type {number} * @memberof InlineResponse2002 */ maxResults?: number; /** * * @type {number} * @memberof InlineResponse2002 */ startAt?: number; /** * * @type {number} * @memberof InlineResponse2002 */ total?: number; /** * * @type {boolean} * @memberof InlineResponse2002 */ isLast?: boolean; /** * * @type {Array} * @memberof InlineResponse2002 */ values?: Array; } export declare function InlineResponse2002FromJSON(json: any): InlineResponse2002; export declare function InlineResponse2002FromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineResponse2002; export declare function InlineResponse2002ToJSON(value?: InlineResponse2002): any;