Page History
...
- NOT_CURRENTLY_KNOWN — is used to check payment options;
- ESTIMATED — order amount can be changed later, depending on the response;
- FINAL — the order amount is final, will not change in the process.
Example of getGoogleTransactionInfo function:
Code Block | ||
---|---|---|
| ||
function getGoogleTransactionInfo() {
return {
currencyCode: $('#currency').val(), //order currency
totalPriceStatus: 'FINAL', //order amount status
totalPrice: $('#amount').val() //order amount
};
} |