UNPKG

pcp-server-nodejs-sdk

Version:

[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=PAYONE-GmbH_PCP-server-nodeJS-SDK&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [![Coverage](https://sonarcloud.io/api/pr

18 lines 1.05 kB
/** * @description The deliverType refers to the ShoppingCart items of the Checkout. * deliverType = FULL should be provided if all items should be marked as delivered and the payment for the entire * ShoppingCart should be captured. * deliverType = PARTIAL should be provided if only certain items should be marked as delivered and the Capture * should not be made for the entire ShoppingCart. For this type the list of items has to be provided. * Following conditions apply to the Deliver request: * * items must be in status ORDERED * * there was no Capture, Refund or Cancel triggered over the Payment Execution resource * * for the deliverType FULL no items are provided in the request * Note: If a DISCOUNT productType is among the ShoppingCart items, only deliverType FULL is possible. */ export var DeliverType; (function (DeliverType) { DeliverType["FULL"] = "FULL"; DeliverType["PARTIAL"] = "PARTIAL"; })(DeliverType || (DeliverType = {})); //# sourceMappingURL=DeliverType.js.map