Slide 66
Slide 66 text
Transaction details var transactionDetails = {
total: {
label: 'Total',
amount: { currency: 'GBP', value: '99.00' }
},
displayItems: [
{
label: 'Subtotal',
amount: { currency: 'GBP', value: '99.00' }
}
],
};
Here we provide the specifics
of the transaction; how much
to charge, the currency and so
on.
We can also provide line items,
which are displayed for the
user.