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

19 lines 995 B
/** * @description The refreshType refers to the type of the payment status refresh. * * - `PAYMENT_EVENTS`: Refresh the payment status of the payment and return the events. * This is a synchronization of the payment status with the payment platform. * This can be used in case of any possible inconsistencies between the commerce platform * and the payment platform. * * - `PAYMENT_PROVIDER_DETAILS`: Refresh the payment status of the payment and return the * payment provider details. This is a synchronization of the payment with the external * payment provider. The current use case is to update the customer status of a transaction * using PAYONE Buy Now, Pay Later (BNPL) with the external provider Payla. */ export var RefreshType; (function (RefreshType) { RefreshType["PAYMENT_EVENTS"] = "PAYMENT_EVENTS"; RefreshType["PAYMENT_PROVIDER_DETAILS"] = "PAYMENT_PROVIDER_DETAILS"; })(RefreshType || (RefreshType = {})); //# sourceMappingURL=RefreshType.js.map