Result of a successful Apple Pay authorization.

interface ApplePayOutput {
    paymentData: string;
    transactionIdentifier: string;
    paymentMethod: ApplePayPaymentMethodInfo;
}

Properties

paymentData: string

Base64-encoded opaque token blob returned by Apple Pay. Send to your backend for validation/processing. Security: Do not log or persist this value on-device beyond the payment flow requirements.

transactionIdentifier: string

A string identifier for the transaction. Use for tracing and reconciliation as needed.

Metadata describing the payment instrument used.