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) 620 B
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; }