/** * 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. */ /** * A recursive ValidationException that describes all schema violations for an entire schema tree. * @export * @interface ValidationException */ export interface ValidationException { /** * The JSON schema keyword which was violated. * @type {string} * @memberof ValidationException */ keyword?: string; /** * A JSON Pointer denoting the path from the input document root to its fragment which caused the validation failure. * @type {string} * @memberof ValidationException */ pointerToViolation?: string; /** * The description of the validation failure. * @type {string} * @memberof ValidationException */ message?: string; /** * A JSON Pointer denoting the path from the schema JSON root to the violated keyword. * @type {string} * @memberof ValidationException */ schemaLocation?: string; /** * An array of sub-exceptions. * @type {Array} * @memberof ValidationException */ causingExceptions?: Array; } /** * Check if a given object implements the ValidationException interface. */ export declare function instanceOfValidationException(value: object): value is ValidationException; export declare function ValidationExceptionFromJSON(json: any): ValidationException; export declare function ValidationExceptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidationException; export declare function ValidationExceptionToJSON(json: any): ValidationException; export declare function ValidationExceptionToJSONTyped(value?: ValidationException | null, ignoreDiscriminator?: boolean): any;