/** * Leka API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * 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. */ /** * * @export * @interface ValidationErrors */ export interface ValidationErrors { /** * * @type {string} * @memberof ValidationErrors */ code: string; /** * * @type {string} * @memberof ValidationErrors */ message: string; /** * * @type {any} * @memberof ValidationErrors */ cause?: any | null; } /** * Check if a given object implements the ValidationErrors interface. */ export declare function instanceOfValidationErrors(value: object): value is ValidationErrors; export declare function ValidationErrorsFromJSON(json: any): ValidationErrors; export declare function ValidationErrorsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidationErrors; export declare function ValidationErrorsToJSON(value?: ValidationErrors | null): any; //# sourceMappingURL=ValidationErrors.d.ts.map