import { LiveValidationError } from "./liveValidationError"; /** * @class * Initializes a new instance of the ErrorResponse class. * @constructor * Describes the error response for negative scenarios. * * @member {string} [description] Description of the model property or the * parameter in the swagger spec that causes validation failure. * * @member {array} [params] The parameters used when validation failed * (z-schema construct). * * @member {array} [path] The path to the location in the document or the model * where the error/warning occurred. * */ export declare class ErrorResponse extends LiveValidationError { constructor(); /** * Defines the metadata of ErrorResponse * * @returns {object} metadata of ErrorResponse * */ mapper(): { required: boolean; serializedName: string; type: { name: string; className: string; modelProperties: { code: { required: boolean; serializedName: string; type: { name: string; }; }; message: { required: boolean; serializedName: string; type: { name: string; }; }; description: { required: boolean; serializedName: string; type: { name: string; }; }; params: { required: boolean; serializedName: string; type: { name: string; element: { required: boolean; serializedName: string; type: { name: string; }; }; }; }; path: { required: boolean; serializedName: string; type: { name: string; element: { required: boolean; serializedName: string; type: { name: string; }; }; }; }; }; }; }; } //# sourceMappingURL=errorResponse.d.ts.map