/** * @class * Initializes a new instance of the LiveValidationError class. * @constructor * Describes the error occurred while performing validation on live * request/response. * * @member {string} [code] The unique error code describing an error. * * @member {string} [message] The error message providing meaningful * information. * */ export declare class LiveValidationError { code?: string | undefined; message?: string | undefined; constructor(code?: string | undefined, message?: string | undefined); /** * Defines the metadata of LiveValidationError * * @returns {object} metadata of LiveValidationError * */ 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; }; }; }; }; }; } //# sourceMappingURL=liveValidationError.d.ts.map