pcp-server-nodejs-sdk
Version:
[](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [ • 534 B
TypeScript
import type { CartItemInput } from './CartItemInput.js';
/**
* @description Return object contains additional information about the return/shipment, which is the basis for the Refund.
* The amountOfMoney in the cartItem will not be used in the request.
*/
export interface ReturnInformation {
/**
* @description Reason of the Refund (e.g. communicated by or to the consumer).
* @example Customer complained
*/
returnReason?: string;
/** @description Items returned. */
items?: CartItemInput[];
}