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

15 lines (14 loc) 534 B
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[]; }