/** * 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 { Comment } from './'; /** * A page of comments. * @export * @interface PageOfComments */ export interface PageOfComments { [key: string]: object | any; /** * The number of items returned. * @type {number} * @memberof PageOfComments */ readonly total?: number; /** * The index of the first item returned. * @type {number} * @memberof PageOfComments */ readonly startAt?: number; /** * The list of comments. * @type {Array} * @memberof PageOfComments */ readonly comments?: Array; /** * The maximum number of items that could be returned. * @type {number} * @memberof PageOfComments */ readonly maxResults?: number; } export declare function PageOfCommentsFromJSON(json: any): PageOfComments; export declare function PageOfCommentsFromJSONTyped(json: any, ignoreDiscriminator: boolean): PageOfComments; export declare function PageOfCommentsToJSON(value?: PageOfComments): any;