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

19 lines (18 loc) 864 B
import type { CardFraudResults } from './CardFraudResults.js'; import type { MobilePaymentNetwork } from './MobilePaymentNetwork.js'; import type { ThreeDSecureResults } from './ThreeDSecureResults.js'; /** @description Object containing the mobile payment method details. */ export interface MobilePaymentMethodSpecificOutput { /** * Format: int32 * @description Payment product identifier - please check product documentation for a full overview of possible values. * @example 302 */ paymentProductId?: number; /** @description Card Authorization code as returned by the acquirer */ authorisationCode?: string; fraudResults?: CardFraudResults; threeDSecureResults?: ThreeDSecureResults; /** @description The card network that was used for a mobile payment method operation */ network?: MobilePaymentNetwork; }