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) 418 B
/** @description Object containing amount and ISO currency code attributes */ export interface PositiveAmountOfMoney { /** * Format: int64 * @description Amount in cents and always having 2 decimals * @example 1000 */ amount: number; /** * @description Three-letter ISO currency code representing the currency for the amount * @example EUR */ currencyCode: string; }