Changelog Update: 10/11/21

Changes to the Order object returned from Order creation and update webhook callbacks.
Added the following fields:

Presentment currency is defined as the currency that the buyer is paying in, as opposed to the settlement currency which is what the seller receives in a payout.

Below are the additions to the order schema:

"presentment_amount_product": {                 
  "amount": "95.00",                             
    "amount_cents": 9500,                          
    "currency": "USD",                          
    "symbol": "$",                              
    "display": "$95"                           
},                                              
"presentment_amount_product_subtotal": {        
  "amount": "95.00",                             
    "amount_cents": 9500,                          
    "currency": "USD",                          
    "symbol": "$",                              
    "display": "$95"                           
},                                              
"presentment_amount_shipping": {                
  "amount": "8.00",                             
    "amount_cents": 800,                          
    "currency": "USD",                          
    "symbol": "$",                              
    "display": "$8"                           
},                                              
"presentment_amount_tax": {                     
  "amount": "7.60",                             
    "amount_cents": 760,                          
    "currency": "USD",                          
    "symbol": "$",                              
    "display": "$7.60"                           
},                                              
"presentment_amount_total": {                   
  "amount": "110.60",                             
    "amount_cents": 11060,                          
    "currency": "USD",                          
    "symbol": "$",                              
    "display": "$110.60"                           
}