/** * 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 { Webhook } from './'; /** * A page of items. * @export * @interface PageBeanWebhook */ export interface PageBeanWebhook { /** * The index of the first item returned. * @type {number} * @memberof PageBeanWebhook */ readonly startAt?: number; /** * If there is another page of results, the URL of the next page. * @type {string} * @memberof PageBeanWebhook */ readonly nextPage?: string; /** * The maximum number of items that could be returned. * @type {number} * @memberof PageBeanWebhook */ readonly maxResults?: number; /** * The list of items. * @type {Array} * @memberof PageBeanWebhook */ readonly values?: Array; /** * Indicates whether this is the last page. * @type {boolean} * @memberof PageBeanWebhook */ readonly isLast?: boolean; /** * The number of items returned. * @type {number} * @memberof PageBeanWebhook */ readonly total?: number; /** * The URL of the page. * @type {string} * @memberof PageBeanWebhook */ readonly self?: string; } export declare function PageBeanWebhookFromJSON(json: any): PageBeanWebhook; export declare function PageBeanWebhookFromJSONTyped(json: any, ignoreDiscriminator: boolean): PageBeanWebhook; export declare function PageBeanWebhookToJSON(value?: PageBeanWebhook): any;