/** * 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 get a single page of schema version metadata for the given organization and schema name. * @export * @interface ListJsonSchemaVersionInfoRequest */ export interface ListJsonSchemaVersionInfoRequest { /** * The name of the Organization. * @type {string} * @memberof ListJsonSchemaVersionInfoRequest */ organizationName?: string; /** * The name of the JsonSchema to list versions to list schemas for. * @type {string} * @memberof ListJsonSchemaVersionInfoRequest */ schemaName?: string; /** * Forward the returned 'nextPageToken' to get the next page of results. * @type {string} * @memberof ListJsonSchemaVersionInfoRequest */ nextPageToken?: string; } /** * Check if a given object implements the ListJsonSchemaVersionInfoRequest interface. */ export declare function instanceOfListJsonSchemaVersionInfoRequest(value: object): value is ListJsonSchemaVersionInfoRequest; export declare function ListJsonSchemaVersionInfoRequestFromJSON(json: any): ListJsonSchemaVersionInfoRequest; export declare function ListJsonSchemaVersionInfoRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListJsonSchemaVersionInfoRequest; export declare function ListJsonSchemaVersionInfoRequestToJSON(json: any): ListJsonSchemaVersionInfoRequest; export declare function ListJsonSchemaVersionInfoRequestToJSONTyped(value?: ListJsonSchemaVersionInfoRequest | null, ignoreDiscriminator?: boolean): any;