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

24 lines (23 loc) 766 B
import type { ApplePayPaymentToken } from './ApplePayPaymentToken.js'; import type { ApplePayPaymentContact } from './ApplePayPaymentContact.js'; /** * The result of authorizing a payment request that contains payment information. * * Data in ApplePayPaymentToken is encrypted. Billing and shipping contact data are not encrypted. */ export interface ApplePayPayment { /** * An object that contains the user's payment credentials. * */ token?: ApplePayPaymentToken; /** * The shipping contact selected by the user for this transaction. * */ billingContact?: ApplePayPaymentContact; /** * The billing contact selected by the user for this transaction. */ shippingContact?: ApplePayPaymentContact; }