/** * 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 { PassingRecord } from './PassingRecord'; /** * * @export * @interface PaginatedResultsOfPassingRecord */ export interface PaginatedResultsOfPassingRecord { /** * 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 PaginatedResultsOfPassingRecord */ totalNumberOfResults?: number; /** * * @type {Array} * @memberof PaginatedResultsOfPassingRecord */ results?: Array; } /** * Check if a given object implements the PaginatedResultsOfPassingRecord interface. */ export declare function instanceOfPaginatedResultsOfPassingRecord(value: object): value is PaginatedResultsOfPassingRecord; export declare function PaginatedResultsOfPassingRecordFromJSON(json: any): PaginatedResultsOfPassingRecord; export declare function PaginatedResultsOfPassingRecordFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedResultsOfPassingRecord; export declare function PaginatedResultsOfPassingRecordToJSON(json: any): PaginatedResultsOfPassingRecord; export declare function PaginatedResultsOfPassingRecordToJSONTyped(value?: PaginatedResultsOfPassingRecord | null, ignoreDiscriminator?: boolean): any;