pcp-server-nodejs-sdk
Version:
[](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [ • 418 B
TypeScript
/** @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;
}