Page History
...
| Code Block | ||
|---|---|---|
| 
 | ||
| function getGoogleTransactionInfo() {
  return {
    currencyCode: $('#currency').val(), //order currency
    totalPriceStatus: 'FINAL', //order amount status
    totalPrice: $('#amount').val() //order amount
  };
} | 
After the payment is confirmed by the customer, the result will be returned to the processPaymentfunction.
