UNPKG

@sap-cloud-sdk/core

Version:
22 lines 709 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.OrderLink = void 0; /** * Link to represent an order by on a linked entity. * @typeparam EntityT - Type of the entity to link from * @typeparam LinkedEntityT - Type of the entity to link to */ var OrderLink = /** @class */ (function () { /** * Creates an instance of OrderLink. * @param link - Link to the entity to order by * @param orderBy - A list of orderables based on the linked entity */ function OrderLink(link, orderBy) { this.link = link; this.orderBy = orderBy; } return OrderLink; }()); exports.OrderLink = OrderLink; //# sourceMappingURL=order-link.js.map