/** * 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. */ /** * Request to list a single page of JsonSchemaInfo for the given organization name. * @export * @interface ListJsonSchemaInfoRequest */ export interface ListJsonSchemaInfoRequest { /** * The name of the Organization to list schemas for. * @type {string} * @memberof ListJsonSchemaInfoRequest */ organizationName?: string; /** * Forward the returned 'nextPageToken' to get the next page of results. * @type {string} * @memberof ListJsonSchemaInfoRequest */ nextPageToken?: string; } /** * Check if a given object implements the ListJsonSchemaInfoRequest interface. */ export declare function instanceOfListJsonSchemaInfoRequest(value: object): value is ListJsonSchemaInfoRequest; export declare function ListJsonSchemaInfoRequestFromJSON(json: any): ListJsonSchemaInfoRequest; export declare function ListJsonSchemaInfoRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListJsonSchemaInfoRequest; export declare function ListJsonSchemaInfoRequestToJSON(json: any): ListJsonSchemaInfoRequest; export declare function ListJsonSchemaInfoRequestToJSONTyped(value?: ListJsonSchemaInfoRequest | null, ignoreDiscriminator?: boolean): any;