/** * 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 { TrashedEntity } from './TrashedEntity'; /** * * @export * @interface PaginatedResultsOfTrashedEntity */ export interface PaginatedResultsOfTrashedEntity { /** * 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 PaginatedResultsOfTrashedEntity */ totalNumberOfResults?: number; /** * * @type {Array} * @memberof PaginatedResultsOfTrashedEntity */ results?: Array; } /** * Check if a given object implements the PaginatedResultsOfTrashedEntity interface. */ export declare function instanceOfPaginatedResultsOfTrashedEntity(value: object): value is PaginatedResultsOfTrashedEntity; export declare function PaginatedResultsOfTrashedEntityFromJSON(json: any): PaginatedResultsOfTrashedEntity; export declare function PaginatedResultsOfTrashedEntityFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedResultsOfTrashedEntity; export declare function PaginatedResultsOfTrashedEntityToJSON(json: any): PaginatedResultsOfTrashedEntity; export declare function PaginatedResultsOfTrashedEntityToJSONTyped(value?: PaginatedResultsOfTrashedEntity | null, ignoreDiscriminator?: boolean): any;