UNPKG

@sap-cloud-sdk/odata-common

Version:

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

19 lines 814 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.StringFilterFunction = void 0; const orderable_filter_function_1 = require("./orderable-filter-function"); /** * Representation of a filter function, that returns a value of type string. */ class StringFilterFunction extends orderable_filter_function_1.OrderableFilterFunction { /** * Creates an instance of StringFilterFunction. * @param functionName - Name of the function that returns a string value. * @param parameters - Representation of the parameters passed to the filter function. */ constructor(functionName, parameters) { super(functionName, parameters, 'Edm.String'); } } exports.StringFilterFunction = StringFilterFunction; //# sourceMappingURL=string-filter-function.js.map