/** * 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 { RowSet } from './RowSet'; /** * Paginated results of a RowSet * @export * @interface PaginatedRowSet */ export interface PaginatedRowSet { /** * * @type {RowSet} * @memberof PaginatedRowSet */ results?: RowSet; /** * The total number of results * @type {number} * @memberof PaginatedRowSet */ totalNumberOfResults?: number; } /** * Check if a given object implements the PaginatedRowSet interface. */ export declare function instanceOfPaginatedRowSet(value: object): value is PaginatedRowSet; export declare function PaginatedRowSetFromJSON(json: any): PaginatedRowSet; export declare function PaginatedRowSetFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedRowSet; export declare function PaginatedRowSetToJSON(json: any): PaginatedRowSet; export declare function PaginatedRowSetToJSONTyped(value?: PaginatedRowSet | null, ignoreDiscriminator?: boolean): any;