pcp-server-nodejs-sdk
Version:
[](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [ • 379 B
TypeScript
import type { CartItemInput } from './CartItemInput.js';
/**
* @description Delivery object contains additional information about the delivery/shipment, which is the basis for the Capture.
* The amountOfMoney in the cartItem will not be used in the request.
*/
export interface DeliveryInformation {
/** @description Items delivered. */
items?: CartItemInput[];
}