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

28 lines (27 loc) 928 B
import type { ApplePayPaymentMethodType } from './ApplePayPaymentMethodType.js'; import type { ApplePayPaymentContact } from './ApplePayPaymentContact.js'; /** * Information about the card used in the transaction. */ export interface ApplePayPaymentMethod { /** * @description A string, suitable for display, that describes the card. */ displayName?: string; /** * @description A string, suitable for display, that is the name of the payment network backing the card. */ network?: string; /** * @description A string value representing the card's type of payment. */ type?: ApplePayPaymentMethodType; /** * @description string|null The payment pass object currently selected to complete the payment. */ paymentPass?: string; /** * @description The billing contact associated with the card. */ billingContact?: ApplePayPaymentContact; }