/** * 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 { Organization } from './Organization'; /** * A single page of the currently registered Organizations * @export * @interface ListOrganizationsResponse */ export interface ListOrganizationsResponse { /** * * @type {Array} * @memberof ListOrganizationsResponse */ page?: Array; /** * Forward this token to get the next page of results. * @type {string} * @memberof ListOrganizationsResponse */ nextPageToken?: string; } /** * Check if a given object implements the ListOrganizationsResponse interface. */ export declare function instanceOfListOrganizationsResponse(value: object): value is ListOrganizationsResponse; export declare function ListOrganizationsResponseFromJSON(json: any): ListOrganizationsResponse; export declare function ListOrganizationsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListOrganizationsResponse; export declare function ListOrganizationsResponseToJSON(json: any): ListOrganizationsResponse; export declare function ListOrganizationsResponseToJSONTyped(value?: ListOrganizationsResponse | null, ignoreDiscriminator?: boolean): any;