UNPKG

@sap-cloud-sdk/odata-common

Version:

SAP Cloud SDK for JavaScript common functions of OData client generator and OpenAPI clint generator.

22 lines 776 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.OperationParameter = void 0; /** * Internal representation of operation parameters. It adds metadata to the value. * @typeParam ValueT - Type of the value. */ class OperationParameter { /** * Creates an instance of OperationParameter. * @param originalName - The original name of the parameter in the OData service. * @param edmType - Original EDM type. * @param value - Value to be used as parameter. */ constructor(originalName, edmType, value) { this.originalName = originalName; this.edmType = edmType; this.value = value; } } exports.OperationParameter = OperationParameter; //# sourceMappingURL=operation-parameter.js.map