/** * 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 { Team } from './Team'; /** * * @export * @interface PaginatedResultsOfTeam */ export interface PaginatedResultsOfTeam { /** * 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 PaginatedResultsOfTeam */ totalNumberOfResults?: number; /** * * @type {Array} * @memberof PaginatedResultsOfTeam */ results?: Array; } /** * Check if a given object implements the PaginatedResultsOfTeam interface. */ export declare function instanceOfPaginatedResultsOfTeam(value: object): value is PaginatedResultsOfTeam; export declare function PaginatedResultsOfTeamFromJSON(json: any): PaginatedResultsOfTeam; export declare function PaginatedResultsOfTeamFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedResultsOfTeam; export declare function PaginatedResultsOfTeamToJSON(json: any): PaginatedResultsOfTeam; export declare function PaginatedResultsOfTeamToJSONTyped(value?: PaginatedResultsOfTeam | null, ignoreDiscriminator?: boolean): any;