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