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

27 lines 1.39 kB
/** * @description Reason why an order was cancelled. Possible values: * * CONSUMER_REQUEST - The consumer requested a cancellation of the Order * * UNDELIVERABLE - The merchant cannot fulfill the Order * * DUPLICATE - The Order was created twice accidentally * * FRAUDULENT- Consumer turned out to be a fraudster * * ORDER_SHIPPED_IN_FULL - The merchant shipped everything and wants to cancel the remaining authorized amount of * the Order * * AUTOMATED_SHIPMENT_FAILED - A technical error was thrown during an automated shipment API call rendering the * Order impossible to complete * * Mandatory for PAYONE Buy Now, Pay Later (BNPL): * * 3390 - PAYONE Secured Invoice * * 3391 - PAYONE Secured Installment * * 3392 - PAYONE Secured Direct Debit * @example CONSUMER_REQUEST */ export var CancellationReason; (function (CancellationReason) { CancellationReason["CONSUMER_REQUEST"] = "CONSUMER_REQUEST"; CancellationReason["UNDELIVERABLE"] = "UNDELIVERABLE"; CancellationReason["DUPLICATE"] = "DUPLICATE"; CancellationReason["FRAUDULENT"] = "FRAUDULENT"; CancellationReason["ORDER_SHIPPED_IN_FULL"] = "ORDER_SHIPPED_IN_FULL"; CancellationReason["AUTOMATED_SHIPMENT_FAILED"] = "AUTOMATED_SHIPMENT_FAILED"; })(CancellationReason || (CancellationReason = {})); //# sourceMappingURL=CancellationReason.js.map