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

14 lines (13 loc) 684 B
/** * @description Determines the type of the authorization that will be used. Allowed values: * * PRE_AUTHORIZATION - The payment creation results in a pre-authorization that is ready for Capture. Pre- * authortizations can be reversed and can be captured within 30 days. The capture amount can be lower than the * authorized amount. * * SALE - The payment creation results in an authorization that is already captured at the moment of approval. * * If the parameter is not provided in the request, the default value will be PRE_AUTHORIZATION */ export declare enum AuthorizationMode { PRE_AUTHORIZATION = "PRE_AUTHORIZATION", SALE = "SALE" }