pcp-server-nodejs-sdk
Version:
[](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [ • 620 B
TypeScript
import type { CompletePaymentMethodSpecificInput } from './CompletePaymentMethodSpecificInput.js';
/**
* @description The Complete-Order request is the last step to finalize the initial Order.
* It requires the completePaymentMethodSpecificInput. The previously provided data
* from the Commerce Case, Checkout, and Order will automatically be loaded and used
* for the completion of the Order.
*/
export interface CompleteOrderRequest {
/**
* @description Contains the specific input required to complete the payment.
*/
completePaymentMethodSpecificInput?: CompletePaymentMethodSpecificInput;
}