pcp-server-nodejs-sdk
Version:
[](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [ • 418 B
TypeScript
import type { CheckoutResponse } from './CheckoutResponse.js';
/** @description Object that holds the number of found Checkouts and the requested page of Checkouts */
export interface CheckoutsResponse {
/**
* Format: int64
* @description Number of found Checkouts
* @example 3390
*/
numberOfCheckouts: number;
/** @description List of Checkouts */
checkouts: CheckoutResponse[];
}