pcp-server-nodejs-sdk
Version:
[](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [ • 342 B
TypeScript
import type { PaymentIntentOutput } from './PaymentIntentOutput.js';
import type { ShoppingCartData } from './ShoppingCartData.js';
/** @description Object containing details on the created payment intent. */
export interface CreatePaymentIntentResponse {
shoppingCart?: ShoppingCartData;
paymentIntentOutput?: PaymentIntentOutput;
}