/** * 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 { UserGroup } from './UserGroup'; /** * * @export * @interface PaginatedResultsOfUserGroup */ export interface PaginatedResultsOfUserGroup { /** * 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 PaginatedResultsOfUserGroup */ totalNumberOfResults?: number; /** * * @type {Array} * @memberof PaginatedResultsOfUserGroup */ results?: Array; } /** * Check if a given object implements the PaginatedResultsOfUserGroup interface. */ export declare function instanceOfPaginatedResultsOfUserGroup(value: object): value is PaginatedResultsOfUserGroup; export declare function PaginatedResultsOfUserGroupFromJSON(json: any): PaginatedResultsOfUserGroup; export declare function PaginatedResultsOfUserGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedResultsOfUserGroup; export declare function PaginatedResultsOfUserGroupToJSON(json: any): PaginatedResultsOfUserGroup; export declare function PaginatedResultsOfUserGroupToJSONTyped(value?: PaginatedResultsOfUserGroup | null, ignoreDiscriminator?: boolean): any;