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

17 lines (16 loc) 823 B
import type { ApplePaymentDataTokenHeaderInformation } from './ApplePaymentDataTokenHeaderInformation.js'; import type { ApplePaymentTokenVersion } from './ApplePaymentTokenVersion.js'; /** * @description Additional information about the Apple payment data token. This information are needed for checking the validity * of the payment data token before decryption. */ export interface ApplePaymentDataTokenInformation { version: ApplePaymentTokenVersion; /** * @description Detached PKCS #7 signature, Base64 encoded as string. Signature of the payment and header data. The * signature includes the signing certificate, its intermediate CA certificate, and information about the * signing algorithm. */ signature: string; header: ApplePaymentDataTokenHeaderInformation; }