/** * @class * Initializes a new instance of the ResponseValidationResult class. * @constructor * Describes the validation result of the live response. * * @member {boolean} [successfulResponse] Describes the status of live response * validation. * * @member {array} [operationInfo] The corresponding operation(s) in OpenAPI * spec that was used for validating the response. * * @member {array} [errors] Provides more information about live response * validation. * */ export declare class ResponseValidationResult { /** * Defines the metadata of ResponseValidationResult * * @returns {object} metadata of ResponseValidationResult * */ mapper(): { required: boolean; serializedName: string; type: { name: string; className: string; modelProperties: { successfulResponse: { required: boolean; readOnly: boolean; serializedName: string; type: { name: string; }; }; operationInfo: { required: boolean; readOnly: boolean; serializedName: string; type: { name: string; element: { required: boolean; serializedName: string; type: { name: string; className: string; }; }; }; }; errors: { required: boolean; readOnly: boolean; serializedName: string; type: { name: string; element: { required: boolean; serializedName: string; type: { name: string; className: string; }; }; }; }; }; }; }; } //# sourceMappingURL=responseValidationResult.d.ts.map