/** * 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 { Subscription } from './Subscription'; /** * A paginated list of Subscription objects * @export * @interface SubscriptionPagedResults */ export interface SubscriptionPagedResults { /** * The list of results for this page * @type {Array} * @memberof SubscriptionPagedResults */ results?: Array; /** * The total number of results * @type {number} * @memberof SubscriptionPagedResults */ totalNumberOfResults?: number; } /** * Check if a given object implements the SubscriptionPagedResults interface. */ export declare function instanceOfSubscriptionPagedResults(value: object): value is SubscriptionPagedResults; export declare function SubscriptionPagedResultsFromJSON(json: any): SubscriptionPagedResults; export declare function SubscriptionPagedResultsFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriptionPagedResults; export declare function SubscriptionPagedResultsToJSON(json: any): SubscriptionPagedResults; export declare function SubscriptionPagedResultsToJSONTyped(value?: SubscriptionPagedResults | null, ignoreDiscriminator?: boolean): any;