/** * @class * Initializes a new instance of the OperationInfo class. * @constructor * Describes the operation against which the live request and response * validation happened. * * @member {string} operationId The id of the operation against which * validation happened. This will help find the problematic information in the * spec and will be useful in preparing report. * * @member {string} apiVersion Describes the api-version of the OpenAPI * specification. This will help find the OpenAPI spec corresponding to that * api-version and will be useful in preparing report. * */ export declare class OperationInfo { /** * Defines the metadata of OperationInfo * * @returns metadata of OperationInfo * */ mapper(): { required: boolean; serializedName: string; type: { name: string; className: string; modelProperties: { operationId: { required: boolean; serializedName: string; type: { name: string; }; }; apiVersion: { required: boolean; serializedName: string; type: { name: string; }; }; }; }; }; } //# sourceMappingURL=operationInfo.d.ts.map