interface ApplePayPaymentResult {
    applePayCardNonce?: {
        binData?: BinData;
        nonce: string;
        type: string;
    };
    payment?: Payment;
    userCancelled?: boolean;
}

Properties

applePayCardNonce?: {
    binData?: BinData;
    nonce: string;
    type: string;
}

Type declaration

  • Optional binData?: BinData
  • nonce: string
  • type: string
payment?: Payment
userCancelled?: boolean

True if user closed the window without paying.