/** * Organizze API * Specification for the Organizze API described in [https://github.com/organizze/api-doc](https://github.com/organizze/api-doc) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Validation failures * @export * @interface ValidationError */ export interface ValidationError { [key: string]: any | any; /** * * @type {{ [key: string]: Array; }} * @memberof ValidationError */ errors?: { [key: string]: Array; }; } /** * Check if a given object implements the ValidationError interface. */ export declare function instanceOfValidationError(value: object): value is ValidationError; export declare function ValidationErrorFromJSON(json: any): ValidationError; export declare function ValidationErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidationError; export declare function ValidationErrorToJSON(json: any): ValidationError; export declare function ValidationErrorToJSONTyped(value?: ValidationError | null, ignoreDiscriminator?: boolean): any;