One or many of these objects is passed in when using the Line Item Payment Page endpoint

Field NameTypeDescription
paymentAmountDecimalThe amount for the given line item. This amount will be shown as the total amount for the line item and defaulted as the amount to be paid off on that line item.
editableBooleanDefault is True. If True, allows for edits to the amount to be made on the page. If False, then the amount provided in paymentAmount will be locked in place.
itemIdStringValue for itemId column. If none supplied for any line item on page, column won't appear.
itemNameStringValue for itemName column. If none supplied for any line item on page, column won't appear.
itemDescriptionStringValue for itemDescription column. If none supplied for any line item on page, column won't appear.
"lineItems": [
    {
      "paymentAmount": 600,
      "editable": true,
      "itemId": "12345",
      "itemName": "Hourly Professional Services",
      "itemDescription": "Standard Hourly Rate"
    }
  ]