@sap-cloud-sdk/odata-common
Version:
SAP Cloud SDK for JavaScript common functions of OData client generator and OpenAPI clint generator.
20 lines • 979 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NumberFilterFunction = void 0;
const orderable_filter_function_1 = require("./orderable-filter-function");
/**
* Representation of a filter function, that returns a value of type number. This supports int, double and decimal values.
*/
class NumberFilterFunction extends orderable_filter_function_1.OrderableFilterFunction {
/**
* Creates an instance of NumberFilterFunction.
* @param functionName - Name of the function that returns a numeric value.
* @param parameters - Representation of the parameters passed to the filter function.
* @param edmType - Type of the returned numeric value. This influences the formatting of the returned value.
*/
constructor(functionName, parameters, edmType) {
super(functionName, parameters, edmType);
}
}
exports.NumberFilterFunction = NumberFilterFunction;
//# sourceMappingURL=number-filter-function.js.map