/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { V2WikiHistorySnapshot } from './V2WikiHistorySnapshot'; /** * * @export * @interface PaginatedResultsOfV2WikiHistorySnapshot */ export interface PaginatedResultsOfV2WikiHistorySnapshot { /** * Calculating the actual totalNumberOfResults is not longer supported. Therefore, for each page, the totalNumberOfResults is estimated using the current page, limit, and offset. When the page size equals the limit, the totalNumberOfResults will be offset+pageSize+ 1. Otherwise, the totalNumberOfResults will be offset+pageSize. * @type {number} * @memberof PaginatedResultsOfV2WikiHistorySnapshot */ totalNumberOfResults?: number; /** * * @type {Array} * @memberof PaginatedResultsOfV2WikiHistorySnapshot */ results?: Array; } /** * Check if a given object implements the PaginatedResultsOfV2WikiHistorySnapshot interface. */ export declare function instanceOfPaginatedResultsOfV2WikiHistorySnapshot(value: object): value is PaginatedResultsOfV2WikiHistorySnapshot; export declare function PaginatedResultsOfV2WikiHistorySnapshotFromJSON(json: any): PaginatedResultsOfV2WikiHistorySnapshot; export declare function PaginatedResultsOfV2WikiHistorySnapshotFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedResultsOfV2WikiHistorySnapshot; export declare function PaginatedResultsOfV2WikiHistorySnapshotToJSON(json: any): PaginatedResultsOfV2WikiHistorySnapshot; export declare function PaginatedResultsOfV2WikiHistorySnapshotToJSONTyped(value?: PaginatedResultsOfV2WikiHistorySnapshot | null, ignoreDiscriminator?: boolean): any;