UNPKG

@sap-cloud-sdk/odata-common

Version:

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

20 lines 939 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CollectionFilterFunction = void 0; const filter_function_base_1 = require("./filter-function-base"); /** * Representation of a filter function, that returns a collection of values. */ class CollectionFilterFunction extends filter_function_base_1.FilterFunction { /** * Creates an instance of CollectionFilterFunction. * @param functionName - Name of the function that returns a collection value. * @param parameters - Representation of the parameters passed to the filter function. * @param edmType - Type of the returned collection value. This influences the formatting of the returned value. */ constructor(functionName, parameters, edmType) { super(functionName, parameters, edmType); } } exports.CollectionFilterFunction = CollectionFilterFunction; //# sourceMappingURL=collection-filter-function.js.map