@sap-cloud-sdk/odata-v4
Version:
SAP Cloud SDK for JavaScript common functions of OData client generator and OpenAPI clint generator.
19 lines • 821 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DateFilterFunction = void 0;
const internal_1 = require("@sap-cloud-sdk/odata-common/internal");
/**
* Representation of a filter function, that returns a value of type date. This supports DateTimeOffset values.
*/
class DateFilterFunction extends internal_1.OrderableFilterFunction {
/**
* Creates an instance of DateFilterFunction.
* @param functionName - Name of the function that returns a numeric value.
* @param parameters - Representation of the parameters passed to the filter function.
*/
constructor(functionName, parameters) {
super(functionName, parameters, 'Edm.DateTimeOffset');
}
}
exports.DateFilterFunction = DateFilterFunction;
//# sourceMappingURL=date-filter-function.js.map