/** * 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 { SubmissionBundle } from './SubmissionBundle'; /** * * @export * @interface PaginatedResultsOfSubmissionBundle */ export interface PaginatedResultsOfSubmissionBundle { /** * 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 PaginatedResultsOfSubmissionBundle */ totalNumberOfResults?: number; /** * * @type {Array} * @memberof PaginatedResultsOfSubmissionBundle */ results?: Array; } /** * Check if a given object implements the PaginatedResultsOfSubmissionBundle interface. */ export declare function instanceOfPaginatedResultsOfSubmissionBundle(value: object): value is PaginatedResultsOfSubmissionBundle; export declare function PaginatedResultsOfSubmissionBundleFromJSON(json: any): PaginatedResultsOfSubmissionBundle; export declare function PaginatedResultsOfSubmissionBundleFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedResultsOfSubmissionBundle; export declare function PaginatedResultsOfSubmissionBundleToJSON(json: any): PaginatedResultsOfSubmissionBundle; export declare function PaginatedResultsOfSubmissionBundleToJSONTyped(value?: PaginatedResultsOfSubmissionBundle | null, ignoreDiscriminator?: boolean): any;