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

12 lines (11 loc) 484 B
import type { AmountOfMoney } from './AmountOfMoney.js'; import type { PaymentId } from './PaymentId.js'; import type { PaymentIntentId } from './PaymentIntentId.js'; import type { PaymentReferences } from './PaymentReferences.js'; /** @description Object containing details for a payment intent. */ export interface PaymentIntentResponseData { amountOfMoney?: AmountOfMoney; references?: PaymentReferences; paymentIntentId?: PaymentIntentId; paymentId?: PaymentId; }