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

20 lines (19 loc) 776 B
import type { CheckoutResponse } from './CheckoutResponse.js'; import type { CreationDateTime } from './CreationDateTime.js'; import type { Customer } from './Customer.js'; export interface CommerceCaseResponse { /** * @description Unique reference of the Commerce Case that is also returned for reporting and reconciliation purposes. * @example customer-commerce-case-123 */ merchantReference?: string; /** * Format: UUID * @description Unique ID reference of the Commerce Case. It can be used to add additional Checkouts to the Commerce Case. * @example 0c3ab9d7-19ed-40da-9a0e-1f96f4cfb8ae */ commerceCaseId?: string; customer?: Customer; checkouts?: CheckoutResponse[]; creationDateTime?: CreationDateTime; }