/** * 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. */ /** * JSON schema for a request to list a page of Portals, the list will be ordered by name. * @export * @interface ListPortalsRequest */ export interface ListPortalsRequest { /** * Forward this token to get the next page of results. * @type {string} * @memberof ListPortalsRequest */ nextPageToken?: string; } /** * Check if a given object implements the ListPortalsRequest interface. */ export declare function instanceOfListPortalsRequest(value: object): value is ListPortalsRequest; export declare function ListPortalsRequestFromJSON(json: any): ListPortalsRequest; export declare function ListPortalsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListPortalsRequest; export declare function ListPortalsRequestToJSON(json: any): ListPortalsRequest; export declare function ListPortalsRequestToJSONTyped(value?: ListPortalsRequest | null, ignoreDiscriminator?: boolean): any;