/** * mongocamp-server * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface JsonSchemaDefinition */ export interface JsonSchemaDefinition { /** * * @type {string} * @memberof JsonSchemaDefinition */ type: string; /** * * @type {string} * @memberof JsonSchemaDefinition */ title: string; /** * * @type {boolean} * @memberof JsonSchemaDefinition */ additionalProperties: boolean; /** * * @type {Array} * @memberof JsonSchemaDefinition */ required?: Array; /** * * @type {{ [key: string]: { [key: string]: string; }; }} * @memberof JsonSchemaDefinition */ properties: { [key: string]: { [key: string]: string; }; }; } export declare function JsonSchemaDefinitionFromJSON(json: any): JsonSchemaDefinition; export declare function JsonSchemaDefinitionFromJSONTyped(json: any, ignoreDiscriminator: boolean): JsonSchemaDefinition; export declare function JsonSchemaDefinitionToJSON(value?: JsonSchemaDefinition | null): any;