/** * 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 { Portal } from './Portal'; /** * JSON schema for a list of Portals * @export * @interface ListPortalsResponse */ export interface ListPortalsResponse { /** * A page of portals that match the request filters. * @type {Array} * @memberof ListPortalsResponse */ page?: Array; /** * Forward this token to get the next page of results. * @type {string} * @memberof ListPortalsResponse */ nextPageToken?: string; } /** * Check if a given object implements the ListPortalsResponse interface. */ export declare function instanceOfListPortalsResponse(value: object): value is ListPortalsResponse; export declare function ListPortalsResponseFromJSON(json: any): ListPortalsResponse; export declare function ListPortalsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListPortalsResponse; export declare function ListPortalsResponseToJSON(json: any): ListPortalsResponse; export declare function ListPortalsResponseToJSONTyped(value?: ListPortalsResponse | null, ignoreDiscriminator?: boolean): any;