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

18 lines (17 loc) 553 B
/** @description Items should only be provided for orderType = PARTIAL */ export interface OrderItem { /** * Format: UUID * @description Id of the item from the ShoppingCart. The id will be returned in the response from create Checkout request. * @example 4f0c512e-f12c-11ec-8ea0-0242ac120002 */ id: string; /** * Format: int64 * @description Quantity of the specific item. Must be greater than zero. * Note: Must not be all spaces or all zeros * * @example 1 */ quantity: number; }